@aws-amplify/geo 1.3.12-next.13 → 1.3.12-next.20
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/aws-amplify-geo.js +759 -1469
- package/dist/aws-amplify-geo.js.map +1 -1
- package/dist/aws-amplify-geo.min.js +6 -6
- package/dist/aws-amplify-geo.min.js.map +1 -1
- package/lib/Geo.js +14 -65
- package/lib/Geo.js.map +1 -1
- package/lib/Providers/AmazonLocationServiceProvider.js +25 -83
- package/lib/Providers/AmazonLocationServiceProvider.js.map +1 -1
- package/lib/util.js +5 -23
- package/lib/util.js.map +1 -1
- package/lib-esm/Geo.js +1 -52
- package/lib-esm/Geo.js.map +1 -1
- package/lib-esm/Providers/AmazonLocationServiceProvider.js +1 -56
- package/lib-esm/Providers/AmazonLocationServiceProvider.js.map +1 -1
- package/lib-esm/util.js +1 -16
- package/lib-esm/util.js.map +1 -1
- package/package.json +5 -4
package/dist/aws-amplify-geo.js
CHANGED
|
@@ -253,8 +253,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
253
253
|
/* harmony import */ var _whatwgEncodingApi__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./whatwgEncodingApi */ "../../node_modules/@aws-crypto/util/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js");
|
|
254
254
|
|
|
255
255
|
|
|
256
|
-
|
|
257
|
-
|
|
256
|
+
var fromUtf8 = function (input) {
|
|
257
|
+
return typeof TextEncoder === "function" ? Object(_whatwgEncodingApi__WEBPACK_IMPORTED_MODULE_1__["fromUtf8"])(input) : Object(_pureJs__WEBPACK_IMPORTED_MODULE_0__["fromUtf8"])(input);
|
|
258
|
+
};
|
|
259
|
+
var toUtf8 = function (input) {
|
|
260
|
+
return typeof TextDecoder === "function" ? Object(_whatwgEncodingApi__WEBPACK_IMPORTED_MODULE_1__["toUtf8"])(input) : Object(_pureJs__WEBPACK_IMPORTED_MODULE_0__["toUtf8"])(input);
|
|
261
|
+
};
|
|
258
262
|
|
|
259
263
|
|
|
260
264
|
/***/ }),
|
|
@@ -270,44 +274,44 @@ const toUtf8 = (input) => typeof TextDecoder === "function" ? Object(_whatwgEnco
|
|
|
270
274
|
__webpack_require__.r(__webpack_exports__);
|
|
271
275
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fromUtf8", function() { return fromUtf8; });
|
|
272
276
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "toUtf8", function() { return toUtf8; });
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
for (
|
|
276
|
-
|
|
277
|
+
var fromUtf8 = function (input) {
|
|
278
|
+
var bytes = [];
|
|
279
|
+
for (var i = 0, len = input.length; i < len; i++) {
|
|
280
|
+
var value = input.charCodeAt(i);
|
|
277
281
|
if (value < 0x80) {
|
|
278
282
|
bytes.push(value);
|
|
279
283
|
}
|
|
280
284
|
else if (value < 0x800) {
|
|
281
|
-
bytes.push((value >> 6) |
|
|
285
|
+
bytes.push((value >> 6) | 192, (value & 63) | 128);
|
|
282
286
|
}
|
|
283
287
|
else if (i + 1 < input.length && (value & 0xfc00) === 0xd800 && (input.charCodeAt(i + 1) & 0xfc00) === 0xdc00) {
|
|
284
|
-
|
|
285
|
-
bytes.push((surrogatePair >> 18) |
|
|
288
|
+
var surrogatePair = 0x10000 + ((value & 1023) << 10) + (input.charCodeAt(++i) & 1023);
|
|
289
|
+
bytes.push((surrogatePair >> 18) | 240, ((surrogatePair >> 12) & 63) | 128, ((surrogatePair >> 6) & 63) | 128, (surrogatePair & 63) | 128);
|
|
286
290
|
}
|
|
287
291
|
else {
|
|
288
|
-
bytes.push((value >> 12) |
|
|
292
|
+
bytes.push((value >> 12) | 224, ((value >> 6) & 63) | 128, (value & 63) | 128);
|
|
289
293
|
}
|
|
290
294
|
}
|
|
291
295
|
return Uint8Array.from(bytes);
|
|
292
296
|
};
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
for (
|
|
296
|
-
|
|
297
|
+
var toUtf8 = function (input) {
|
|
298
|
+
var decoded = "";
|
|
299
|
+
for (var i = 0, len = input.length; i < len; i++) {
|
|
300
|
+
var byte = input[i];
|
|
297
301
|
if (byte < 0x80) {
|
|
298
302
|
decoded += String.fromCharCode(byte);
|
|
299
303
|
}
|
|
300
|
-
else if (
|
|
301
|
-
|
|
302
|
-
decoded += String.fromCharCode(((byte &
|
|
304
|
+
else if (192 <= byte && byte < 224) {
|
|
305
|
+
var nextByte = input[++i];
|
|
306
|
+
decoded += String.fromCharCode(((byte & 31) << 6) | (nextByte & 63));
|
|
303
307
|
}
|
|
304
|
-
else if (
|
|
305
|
-
|
|
306
|
-
|
|
308
|
+
else if (240 <= byte && byte < 365) {
|
|
309
|
+
var surrogatePair = [byte, input[++i], input[++i], input[++i]];
|
|
310
|
+
var encoded = "%" + surrogatePair.map(function (byteValue) { return byteValue.toString(16); }).join("%");
|
|
307
311
|
decoded += decodeURIComponent(encoded);
|
|
308
312
|
}
|
|
309
313
|
else {
|
|
310
|
-
decoded += String.fromCharCode(((byte &
|
|
314
|
+
decoded += String.fromCharCode(((byte & 15) << 12) | ((input[++i] & 63) << 6) | (input[++i] & 63));
|
|
311
315
|
}
|
|
312
316
|
}
|
|
313
317
|
return decoded;
|
|
@@ -347,7 +351,7 @@ function toUtf8(input) {
|
|
|
347
351
|
"use strict";
|
|
348
352
|
__webpack_require__.r(__webpack_exports__);
|
|
349
353
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Location", function() { return Location; });
|
|
350
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
354
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
351
355
|
/* harmony import */ var _commands_AssociateTrackerConsumerCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./commands/AssociateTrackerConsumerCommand */ "../../node_modules/@aws-sdk/client-location/dist-es/commands/AssociateTrackerConsumerCommand.js");
|
|
352
356
|
/* harmony import */ var _commands_BatchDeleteDevicePositionHistoryCommand__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commands/BatchDeleteDevicePositionHistoryCommand */ "../../node_modules/@aws-sdk/client-location/dist-es/commands/BatchDeleteDevicePositionHistoryCommand.js");
|
|
353
357
|
/* harmony import */ var _commands_BatchDeleteGeofenceCommand__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./commands/BatchDeleteGeofenceCommand */ "../../node_modules/@aws-sdk/client-location/dist-es/commands/BatchDeleteGeofenceCommand.js");
|
|
@@ -1205,7 +1209,7 @@ var Location = (function (_super) {
|
|
|
1205
1209
|
"use strict";
|
|
1206
1210
|
__webpack_require__.r(__webpack_exports__);
|
|
1207
1211
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "LocationClient", function() { return LocationClient; });
|
|
1208
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
1212
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
1209
1213
|
/* harmony import */ var _aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/config-resolver */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/index.js");
|
|
1210
1214
|
/* harmony import */ var _aws_sdk_middleware_content_length__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/middleware-content-length */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-content-length/dist-es/index.js");
|
|
1211
1215
|
/* harmony import */ var _aws_sdk_middleware_host_header__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/middleware-host-header */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js");
|
|
@@ -1266,7 +1270,7 @@ var LocationClient = (function (_super) {
|
|
|
1266
1270
|
"use strict";
|
|
1267
1271
|
__webpack_require__.r(__webpack_exports__);
|
|
1268
1272
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AssociateTrackerConsumerCommand", function() { return AssociateTrackerConsumerCommand; });
|
|
1269
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
1273
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
1270
1274
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
1271
1275
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
1272
1276
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -1324,7 +1328,7 @@ var AssociateTrackerConsumerCommand = (function (_super) {
|
|
|
1324
1328
|
"use strict";
|
|
1325
1329
|
__webpack_require__.r(__webpack_exports__);
|
|
1326
1330
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "BatchDeleteDevicePositionHistoryCommand", function() { return BatchDeleteDevicePositionHistoryCommand; });
|
|
1327
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
1331
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
1328
1332
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
1329
1333
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
1330
1334
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -1382,7 +1386,7 @@ var BatchDeleteDevicePositionHistoryCommand = (function (_super) {
|
|
|
1382
1386
|
"use strict";
|
|
1383
1387
|
__webpack_require__.r(__webpack_exports__);
|
|
1384
1388
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "BatchDeleteGeofenceCommand", function() { return BatchDeleteGeofenceCommand; });
|
|
1385
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
1389
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
1386
1390
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
1387
1391
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
1388
1392
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -1440,7 +1444,7 @@ var BatchDeleteGeofenceCommand = (function (_super) {
|
|
|
1440
1444
|
"use strict";
|
|
1441
1445
|
__webpack_require__.r(__webpack_exports__);
|
|
1442
1446
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "BatchEvaluateGeofencesCommand", function() { return BatchEvaluateGeofencesCommand; });
|
|
1443
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
1447
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
1444
1448
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
1445
1449
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
1446
1450
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -1498,7 +1502,7 @@ var BatchEvaluateGeofencesCommand = (function (_super) {
|
|
|
1498
1502
|
"use strict";
|
|
1499
1503
|
__webpack_require__.r(__webpack_exports__);
|
|
1500
1504
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "BatchGetDevicePositionCommand", function() { return BatchGetDevicePositionCommand; });
|
|
1501
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
1505
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
1502
1506
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
1503
1507
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
1504
1508
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -1556,7 +1560,7 @@ var BatchGetDevicePositionCommand = (function (_super) {
|
|
|
1556
1560
|
"use strict";
|
|
1557
1561
|
__webpack_require__.r(__webpack_exports__);
|
|
1558
1562
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "BatchPutGeofenceCommand", function() { return BatchPutGeofenceCommand; });
|
|
1559
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
1563
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
1560
1564
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
1561
1565
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
1562
1566
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -1614,7 +1618,7 @@ var BatchPutGeofenceCommand = (function (_super) {
|
|
|
1614
1618
|
"use strict";
|
|
1615
1619
|
__webpack_require__.r(__webpack_exports__);
|
|
1616
1620
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "BatchUpdateDevicePositionCommand", function() { return BatchUpdateDevicePositionCommand; });
|
|
1617
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
1621
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
1618
1622
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
1619
1623
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
1620
1624
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -1672,7 +1676,7 @@ var BatchUpdateDevicePositionCommand = (function (_super) {
|
|
|
1672
1676
|
"use strict";
|
|
1673
1677
|
__webpack_require__.r(__webpack_exports__);
|
|
1674
1678
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CalculateRouteCommand", function() { return CalculateRouteCommand; });
|
|
1675
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
1679
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
1676
1680
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
1677
1681
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
1678
1682
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -1730,7 +1734,7 @@ var CalculateRouteCommand = (function (_super) {
|
|
|
1730
1734
|
"use strict";
|
|
1731
1735
|
__webpack_require__.r(__webpack_exports__);
|
|
1732
1736
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CalculateRouteMatrixCommand", function() { return CalculateRouteMatrixCommand; });
|
|
1733
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
1737
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
1734
1738
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
1735
1739
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
1736
1740
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -1788,7 +1792,7 @@ var CalculateRouteMatrixCommand = (function (_super) {
|
|
|
1788
1792
|
"use strict";
|
|
1789
1793
|
__webpack_require__.r(__webpack_exports__);
|
|
1790
1794
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CreateGeofenceCollectionCommand", function() { return CreateGeofenceCollectionCommand; });
|
|
1791
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
1795
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
1792
1796
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
1793
1797
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
1794
1798
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -1846,7 +1850,7 @@ var CreateGeofenceCollectionCommand = (function (_super) {
|
|
|
1846
1850
|
"use strict";
|
|
1847
1851
|
__webpack_require__.r(__webpack_exports__);
|
|
1848
1852
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CreateMapCommand", function() { return CreateMapCommand; });
|
|
1849
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
1853
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
1850
1854
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
1851
1855
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
1852
1856
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -1904,7 +1908,7 @@ var CreateMapCommand = (function (_super) {
|
|
|
1904
1908
|
"use strict";
|
|
1905
1909
|
__webpack_require__.r(__webpack_exports__);
|
|
1906
1910
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CreatePlaceIndexCommand", function() { return CreatePlaceIndexCommand; });
|
|
1907
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
1911
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
1908
1912
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
1909
1913
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
1910
1914
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -1962,7 +1966,7 @@ var CreatePlaceIndexCommand = (function (_super) {
|
|
|
1962
1966
|
"use strict";
|
|
1963
1967
|
__webpack_require__.r(__webpack_exports__);
|
|
1964
1968
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CreateRouteCalculatorCommand", function() { return CreateRouteCalculatorCommand; });
|
|
1965
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
1969
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
1966
1970
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
1967
1971
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
1968
1972
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -2020,7 +2024,7 @@ var CreateRouteCalculatorCommand = (function (_super) {
|
|
|
2020
2024
|
"use strict";
|
|
2021
2025
|
__webpack_require__.r(__webpack_exports__);
|
|
2022
2026
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CreateTrackerCommand", function() { return CreateTrackerCommand; });
|
|
2023
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
2027
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
2024
2028
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
2025
2029
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
2026
2030
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -2078,7 +2082,7 @@ var CreateTrackerCommand = (function (_super) {
|
|
|
2078
2082
|
"use strict";
|
|
2079
2083
|
__webpack_require__.r(__webpack_exports__);
|
|
2080
2084
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DeleteGeofenceCollectionCommand", function() { return DeleteGeofenceCollectionCommand; });
|
|
2081
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
2085
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
2082
2086
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
2083
2087
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
2084
2088
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -2136,7 +2140,7 @@ var DeleteGeofenceCollectionCommand = (function (_super) {
|
|
|
2136
2140
|
"use strict";
|
|
2137
2141
|
__webpack_require__.r(__webpack_exports__);
|
|
2138
2142
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DeleteMapCommand", function() { return DeleteMapCommand; });
|
|
2139
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
2143
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
2140
2144
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
2141
2145
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
2142
2146
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -2194,7 +2198,7 @@ var DeleteMapCommand = (function (_super) {
|
|
|
2194
2198
|
"use strict";
|
|
2195
2199
|
__webpack_require__.r(__webpack_exports__);
|
|
2196
2200
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DeletePlaceIndexCommand", function() { return DeletePlaceIndexCommand; });
|
|
2197
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
2201
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
2198
2202
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
2199
2203
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
2200
2204
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -2252,7 +2256,7 @@ var DeletePlaceIndexCommand = (function (_super) {
|
|
|
2252
2256
|
"use strict";
|
|
2253
2257
|
__webpack_require__.r(__webpack_exports__);
|
|
2254
2258
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DeleteRouteCalculatorCommand", function() { return DeleteRouteCalculatorCommand; });
|
|
2255
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
2259
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
2256
2260
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
2257
2261
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
2258
2262
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -2310,7 +2314,7 @@ var DeleteRouteCalculatorCommand = (function (_super) {
|
|
|
2310
2314
|
"use strict";
|
|
2311
2315
|
__webpack_require__.r(__webpack_exports__);
|
|
2312
2316
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DeleteTrackerCommand", function() { return DeleteTrackerCommand; });
|
|
2313
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
2317
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
2314
2318
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
2315
2319
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
2316
2320
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -2368,7 +2372,7 @@ var DeleteTrackerCommand = (function (_super) {
|
|
|
2368
2372
|
"use strict";
|
|
2369
2373
|
__webpack_require__.r(__webpack_exports__);
|
|
2370
2374
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DescribeGeofenceCollectionCommand", function() { return DescribeGeofenceCollectionCommand; });
|
|
2371
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
2375
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
2372
2376
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
2373
2377
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
2374
2378
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -2426,7 +2430,7 @@ var DescribeGeofenceCollectionCommand = (function (_super) {
|
|
|
2426
2430
|
"use strict";
|
|
2427
2431
|
__webpack_require__.r(__webpack_exports__);
|
|
2428
2432
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DescribeMapCommand", function() { return DescribeMapCommand; });
|
|
2429
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
2433
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
2430
2434
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
2431
2435
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
2432
2436
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -2484,7 +2488,7 @@ var DescribeMapCommand = (function (_super) {
|
|
|
2484
2488
|
"use strict";
|
|
2485
2489
|
__webpack_require__.r(__webpack_exports__);
|
|
2486
2490
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DescribePlaceIndexCommand", function() { return DescribePlaceIndexCommand; });
|
|
2487
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
2491
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
2488
2492
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
2489
2493
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
2490
2494
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -2542,7 +2546,7 @@ var DescribePlaceIndexCommand = (function (_super) {
|
|
|
2542
2546
|
"use strict";
|
|
2543
2547
|
__webpack_require__.r(__webpack_exports__);
|
|
2544
2548
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DescribeRouteCalculatorCommand", function() { return DescribeRouteCalculatorCommand; });
|
|
2545
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
2549
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
2546
2550
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
2547
2551
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
2548
2552
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -2600,7 +2604,7 @@ var DescribeRouteCalculatorCommand = (function (_super) {
|
|
|
2600
2604
|
"use strict";
|
|
2601
2605
|
__webpack_require__.r(__webpack_exports__);
|
|
2602
2606
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DescribeTrackerCommand", function() { return DescribeTrackerCommand; });
|
|
2603
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
2607
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
2604
2608
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
2605
2609
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
2606
2610
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -2658,7 +2662,7 @@ var DescribeTrackerCommand = (function (_super) {
|
|
|
2658
2662
|
"use strict";
|
|
2659
2663
|
__webpack_require__.r(__webpack_exports__);
|
|
2660
2664
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DisassociateTrackerConsumerCommand", function() { return DisassociateTrackerConsumerCommand; });
|
|
2661
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
2665
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
2662
2666
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
2663
2667
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
2664
2668
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -2716,7 +2720,7 @@ var DisassociateTrackerConsumerCommand = (function (_super) {
|
|
|
2716
2720
|
"use strict";
|
|
2717
2721
|
__webpack_require__.r(__webpack_exports__);
|
|
2718
2722
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GetDevicePositionCommand", function() { return GetDevicePositionCommand; });
|
|
2719
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
2723
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
2720
2724
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
2721
2725
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
2722
2726
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -2774,7 +2778,7 @@ var GetDevicePositionCommand = (function (_super) {
|
|
|
2774
2778
|
"use strict";
|
|
2775
2779
|
__webpack_require__.r(__webpack_exports__);
|
|
2776
2780
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GetDevicePositionHistoryCommand", function() { return GetDevicePositionHistoryCommand; });
|
|
2777
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
2781
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
2778
2782
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
2779
2783
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
2780
2784
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -2832,7 +2836,7 @@ var GetDevicePositionHistoryCommand = (function (_super) {
|
|
|
2832
2836
|
"use strict";
|
|
2833
2837
|
__webpack_require__.r(__webpack_exports__);
|
|
2834
2838
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GetGeofenceCommand", function() { return GetGeofenceCommand; });
|
|
2835
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
2839
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
2836
2840
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
2837
2841
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
2838
2842
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -2890,7 +2894,7 @@ var GetGeofenceCommand = (function (_super) {
|
|
|
2890
2894
|
"use strict";
|
|
2891
2895
|
__webpack_require__.r(__webpack_exports__);
|
|
2892
2896
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GetMapGlyphsCommand", function() { return GetMapGlyphsCommand; });
|
|
2893
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
2897
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
2894
2898
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
2895
2899
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
2896
2900
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -2948,7 +2952,7 @@ var GetMapGlyphsCommand = (function (_super) {
|
|
|
2948
2952
|
"use strict";
|
|
2949
2953
|
__webpack_require__.r(__webpack_exports__);
|
|
2950
2954
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GetMapSpritesCommand", function() { return GetMapSpritesCommand; });
|
|
2951
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
2955
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
2952
2956
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
2953
2957
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
2954
2958
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -3006,7 +3010,7 @@ var GetMapSpritesCommand = (function (_super) {
|
|
|
3006
3010
|
"use strict";
|
|
3007
3011
|
__webpack_require__.r(__webpack_exports__);
|
|
3008
3012
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GetMapStyleDescriptorCommand", function() { return GetMapStyleDescriptorCommand; });
|
|
3009
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
3013
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
3010
3014
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
3011
3015
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
3012
3016
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -3064,7 +3068,7 @@ var GetMapStyleDescriptorCommand = (function (_super) {
|
|
|
3064
3068
|
"use strict";
|
|
3065
3069
|
__webpack_require__.r(__webpack_exports__);
|
|
3066
3070
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GetMapTileCommand", function() { return GetMapTileCommand; });
|
|
3067
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
3071
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
3068
3072
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
3069
3073
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
3070
3074
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -3122,7 +3126,7 @@ var GetMapTileCommand = (function (_super) {
|
|
|
3122
3126
|
"use strict";
|
|
3123
3127
|
__webpack_require__.r(__webpack_exports__);
|
|
3124
3128
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ListDevicePositionsCommand", function() { return ListDevicePositionsCommand; });
|
|
3125
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
3129
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
3126
3130
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
3127
3131
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
3128
3132
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -3180,7 +3184,7 @@ var ListDevicePositionsCommand = (function (_super) {
|
|
|
3180
3184
|
"use strict";
|
|
3181
3185
|
__webpack_require__.r(__webpack_exports__);
|
|
3182
3186
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ListGeofenceCollectionsCommand", function() { return ListGeofenceCollectionsCommand; });
|
|
3183
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
3187
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
3184
3188
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
3185
3189
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
3186
3190
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -3238,7 +3242,7 @@ var ListGeofenceCollectionsCommand = (function (_super) {
|
|
|
3238
3242
|
"use strict";
|
|
3239
3243
|
__webpack_require__.r(__webpack_exports__);
|
|
3240
3244
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ListGeofencesCommand", function() { return ListGeofencesCommand; });
|
|
3241
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
3245
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
3242
3246
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
3243
3247
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
3244
3248
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -3296,7 +3300,7 @@ var ListGeofencesCommand = (function (_super) {
|
|
|
3296
3300
|
"use strict";
|
|
3297
3301
|
__webpack_require__.r(__webpack_exports__);
|
|
3298
3302
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ListMapsCommand", function() { return ListMapsCommand; });
|
|
3299
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
3303
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
3300
3304
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
3301
3305
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
3302
3306
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -3354,7 +3358,7 @@ var ListMapsCommand = (function (_super) {
|
|
|
3354
3358
|
"use strict";
|
|
3355
3359
|
__webpack_require__.r(__webpack_exports__);
|
|
3356
3360
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ListPlaceIndexesCommand", function() { return ListPlaceIndexesCommand; });
|
|
3357
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
3361
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
3358
3362
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
3359
3363
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
3360
3364
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -3412,7 +3416,7 @@ var ListPlaceIndexesCommand = (function (_super) {
|
|
|
3412
3416
|
"use strict";
|
|
3413
3417
|
__webpack_require__.r(__webpack_exports__);
|
|
3414
3418
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ListRouteCalculatorsCommand", function() { return ListRouteCalculatorsCommand; });
|
|
3415
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
3419
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
3416
3420
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
3417
3421
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
3418
3422
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -3470,7 +3474,7 @@ var ListRouteCalculatorsCommand = (function (_super) {
|
|
|
3470
3474
|
"use strict";
|
|
3471
3475
|
__webpack_require__.r(__webpack_exports__);
|
|
3472
3476
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ListTagsForResourceCommand", function() { return ListTagsForResourceCommand; });
|
|
3473
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
3477
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
3474
3478
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
3475
3479
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
3476
3480
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -3528,7 +3532,7 @@ var ListTagsForResourceCommand = (function (_super) {
|
|
|
3528
3532
|
"use strict";
|
|
3529
3533
|
__webpack_require__.r(__webpack_exports__);
|
|
3530
3534
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ListTrackerConsumersCommand", function() { return ListTrackerConsumersCommand; });
|
|
3531
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
3535
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
3532
3536
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
3533
3537
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
3534
3538
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -3586,7 +3590,7 @@ var ListTrackerConsumersCommand = (function (_super) {
|
|
|
3586
3590
|
"use strict";
|
|
3587
3591
|
__webpack_require__.r(__webpack_exports__);
|
|
3588
3592
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ListTrackersCommand", function() { return ListTrackersCommand; });
|
|
3589
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
3593
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
3590
3594
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
3591
3595
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
3592
3596
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -3644,7 +3648,7 @@ var ListTrackersCommand = (function (_super) {
|
|
|
3644
3648
|
"use strict";
|
|
3645
3649
|
__webpack_require__.r(__webpack_exports__);
|
|
3646
3650
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "PutGeofenceCommand", function() { return PutGeofenceCommand; });
|
|
3647
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
3651
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
3648
3652
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
3649
3653
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
3650
3654
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -3702,7 +3706,7 @@ var PutGeofenceCommand = (function (_super) {
|
|
|
3702
3706
|
"use strict";
|
|
3703
3707
|
__webpack_require__.r(__webpack_exports__);
|
|
3704
3708
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SearchPlaceIndexForPositionCommand", function() { return SearchPlaceIndexForPositionCommand; });
|
|
3705
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
3709
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
3706
3710
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
3707
3711
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
3708
3712
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -3760,7 +3764,7 @@ var SearchPlaceIndexForPositionCommand = (function (_super) {
|
|
|
3760
3764
|
"use strict";
|
|
3761
3765
|
__webpack_require__.r(__webpack_exports__);
|
|
3762
3766
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SearchPlaceIndexForSuggestionsCommand", function() { return SearchPlaceIndexForSuggestionsCommand; });
|
|
3763
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
3767
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
3764
3768
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
3765
3769
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
3766
3770
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -3818,7 +3822,7 @@ var SearchPlaceIndexForSuggestionsCommand = (function (_super) {
|
|
|
3818
3822
|
"use strict";
|
|
3819
3823
|
__webpack_require__.r(__webpack_exports__);
|
|
3820
3824
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SearchPlaceIndexForTextCommand", function() { return SearchPlaceIndexForTextCommand; });
|
|
3821
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
3825
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
3822
3826
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
3823
3827
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
3824
3828
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -3876,7 +3880,7 @@ var SearchPlaceIndexForTextCommand = (function (_super) {
|
|
|
3876
3880
|
"use strict";
|
|
3877
3881
|
__webpack_require__.r(__webpack_exports__);
|
|
3878
3882
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "TagResourceCommand", function() { return TagResourceCommand; });
|
|
3879
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
3883
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
3880
3884
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
3881
3885
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
3882
3886
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -3934,7 +3938,7 @@ var TagResourceCommand = (function (_super) {
|
|
|
3934
3938
|
"use strict";
|
|
3935
3939
|
__webpack_require__.r(__webpack_exports__);
|
|
3936
3940
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "UntagResourceCommand", function() { return UntagResourceCommand; });
|
|
3937
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
3941
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
3938
3942
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
3939
3943
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
3940
3944
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -3992,7 +3996,7 @@ var UntagResourceCommand = (function (_super) {
|
|
|
3992
3996
|
"use strict";
|
|
3993
3997
|
__webpack_require__.r(__webpack_exports__);
|
|
3994
3998
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "UpdateGeofenceCollectionCommand", function() { return UpdateGeofenceCollectionCommand; });
|
|
3995
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
3999
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
3996
4000
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
3997
4001
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
3998
4002
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -4050,7 +4054,7 @@ var UpdateGeofenceCollectionCommand = (function (_super) {
|
|
|
4050
4054
|
"use strict";
|
|
4051
4055
|
__webpack_require__.r(__webpack_exports__);
|
|
4052
4056
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "UpdateMapCommand", function() { return UpdateMapCommand; });
|
|
4053
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
4057
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
4054
4058
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
4055
4059
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
4056
4060
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -4108,7 +4112,7 @@ var UpdateMapCommand = (function (_super) {
|
|
|
4108
4112
|
"use strict";
|
|
4109
4113
|
__webpack_require__.r(__webpack_exports__);
|
|
4110
4114
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "UpdatePlaceIndexCommand", function() { return UpdatePlaceIndexCommand; });
|
|
4111
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
4115
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
4112
4116
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
4113
4117
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
4114
4118
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -4166,7 +4170,7 @@ var UpdatePlaceIndexCommand = (function (_super) {
|
|
|
4166
4170
|
"use strict";
|
|
4167
4171
|
__webpack_require__.r(__webpack_exports__);
|
|
4168
4172
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "UpdateRouteCalculatorCommand", function() { return UpdateRouteCalculatorCommand; });
|
|
4169
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
4173
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
4170
4174
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
4171
4175
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
4172
4176
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -4224,7 +4228,7 @@ var UpdateRouteCalculatorCommand = (function (_super) {
|
|
|
4224
4228
|
"use strict";
|
|
4225
4229
|
__webpack_require__.r(__webpack_exports__);
|
|
4226
4230
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "UpdateTrackerCommand", function() { return UpdateTrackerCommand; });
|
|
4227
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
4231
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
4228
4232
|
/* harmony import */ var _aws_sdk_middleware_serde__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/middleware-serde */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-serde/dist-es/index.js");
|
|
4229
4233
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
4230
4234
|
/* harmony import */ var _models_models_0__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../models/models_0 */ "../../node_modules/@aws-sdk/client-location/dist-es/models/models_0.js");
|
|
@@ -4503,7 +4507,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
4503
4507
|
"use strict";
|
|
4504
4508
|
__webpack_require__.r(__webpack_exports__);
|
|
4505
4509
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "defaultRegionInfoProvider", function() { return defaultRegionInfoProvider; });
|
|
4506
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
4510
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
4507
4511
|
/* harmony import */ var _aws_sdk_config_resolver__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/config-resolver */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/index.js");
|
|
4508
4512
|
|
|
4509
4513
|
|
|
@@ -5544,7 +5548,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
5544
5548
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "UpdateRouteCalculatorResponse", function() { return UpdateRouteCalculatorResponse; });
|
|
5545
5549
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "UpdateTrackerRequest", function() { return UpdateTrackerRequest; });
|
|
5546
5550
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "UpdateTrackerResponse", function() { return UpdateTrackerResponse; });
|
|
5547
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
5551
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
5548
5552
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
5549
5553
|
|
|
5550
5554
|
|
|
@@ -6158,7 +6162,7 @@ var UpdateTrackerResponse;
|
|
|
6158
6162
|
"use strict";
|
|
6159
6163
|
__webpack_require__.r(__webpack_exports__);
|
|
6160
6164
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "paginateGetDevicePositionHistory", function() { return paginateGetDevicePositionHistory; });
|
|
6161
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
6165
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
6162
6166
|
/* harmony import */ var _commands_GetDevicePositionHistoryCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/GetDevicePositionHistoryCommand */ "../../node_modules/@aws-sdk/client-location/dist-es/commands/GetDevicePositionHistoryCommand.js");
|
|
6163
6167
|
/* harmony import */ var _Location__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Location */ "../../node_modules/@aws-sdk/client-location/dist-es/Location.js");
|
|
6164
6168
|
/* harmony import */ var _LocationClient__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../LocationClient */ "../../node_modules/@aws-sdk/client-location/dist-es/LocationClient.js");
|
|
@@ -6263,7 +6267,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6263
6267
|
"use strict";
|
|
6264
6268
|
__webpack_require__.r(__webpack_exports__);
|
|
6265
6269
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "paginateListDevicePositions", function() { return paginateListDevicePositions; });
|
|
6266
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
6270
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
6267
6271
|
/* harmony import */ var _commands_ListDevicePositionsCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/ListDevicePositionsCommand */ "../../node_modules/@aws-sdk/client-location/dist-es/commands/ListDevicePositionsCommand.js");
|
|
6268
6272
|
/* harmony import */ var _Location__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Location */ "../../node_modules/@aws-sdk/client-location/dist-es/Location.js");
|
|
6269
6273
|
/* harmony import */ var _LocationClient__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../LocationClient */ "../../node_modules/@aws-sdk/client-location/dist-es/LocationClient.js");
|
|
@@ -6355,7 +6359,7 @@ function paginateListDevicePositions(config, input) {
|
|
|
6355
6359
|
"use strict";
|
|
6356
6360
|
__webpack_require__.r(__webpack_exports__);
|
|
6357
6361
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "paginateListGeofenceCollections", function() { return paginateListGeofenceCollections; });
|
|
6358
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
6362
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
6359
6363
|
/* harmony import */ var _commands_ListGeofenceCollectionsCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/ListGeofenceCollectionsCommand */ "../../node_modules/@aws-sdk/client-location/dist-es/commands/ListGeofenceCollectionsCommand.js");
|
|
6360
6364
|
/* harmony import */ var _Location__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Location */ "../../node_modules/@aws-sdk/client-location/dist-es/Location.js");
|
|
6361
6365
|
/* harmony import */ var _LocationClient__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../LocationClient */ "../../node_modules/@aws-sdk/client-location/dist-es/LocationClient.js");
|
|
@@ -6447,7 +6451,7 @@ function paginateListGeofenceCollections(config, input) {
|
|
|
6447
6451
|
"use strict";
|
|
6448
6452
|
__webpack_require__.r(__webpack_exports__);
|
|
6449
6453
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "paginateListGeofences", function() { return paginateListGeofences; });
|
|
6450
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
6454
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
6451
6455
|
/* harmony import */ var _commands_ListGeofencesCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/ListGeofencesCommand */ "../../node_modules/@aws-sdk/client-location/dist-es/commands/ListGeofencesCommand.js");
|
|
6452
6456
|
/* harmony import */ var _Location__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Location */ "../../node_modules/@aws-sdk/client-location/dist-es/Location.js");
|
|
6453
6457
|
/* harmony import */ var _LocationClient__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../LocationClient */ "../../node_modules/@aws-sdk/client-location/dist-es/LocationClient.js");
|
|
@@ -6538,7 +6542,7 @@ function paginateListGeofences(config, input) {
|
|
|
6538
6542
|
"use strict";
|
|
6539
6543
|
__webpack_require__.r(__webpack_exports__);
|
|
6540
6544
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "paginateListMaps", function() { return paginateListMaps; });
|
|
6541
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
6545
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
6542
6546
|
/* harmony import */ var _commands_ListMapsCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/ListMapsCommand */ "../../node_modules/@aws-sdk/client-location/dist-es/commands/ListMapsCommand.js");
|
|
6543
6547
|
/* harmony import */ var _Location__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Location */ "../../node_modules/@aws-sdk/client-location/dist-es/Location.js");
|
|
6544
6548
|
/* harmony import */ var _LocationClient__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../LocationClient */ "../../node_modules/@aws-sdk/client-location/dist-es/LocationClient.js");
|
|
@@ -6630,7 +6634,7 @@ function paginateListMaps(config, input) {
|
|
|
6630
6634
|
"use strict";
|
|
6631
6635
|
__webpack_require__.r(__webpack_exports__);
|
|
6632
6636
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "paginateListPlaceIndexes", function() { return paginateListPlaceIndexes; });
|
|
6633
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
6637
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
6634
6638
|
/* harmony import */ var _commands_ListPlaceIndexesCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/ListPlaceIndexesCommand */ "../../node_modules/@aws-sdk/client-location/dist-es/commands/ListPlaceIndexesCommand.js");
|
|
6635
6639
|
/* harmony import */ var _Location__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Location */ "../../node_modules/@aws-sdk/client-location/dist-es/Location.js");
|
|
6636
6640
|
/* harmony import */ var _LocationClient__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../LocationClient */ "../../node_modules/@aws-sdk/client-location/dist-es/LocationClient.js");
|
|
@@ -6722,7 +6726,7 @@ function paginateListPlaceIndexes(config, input) {
|
|
|
6722
6726
|
"use strict";
|
|
6723
6727
|
__webpack_require__.r(__webpack_exports__);
|
|
6724
6728
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "paginateListRouteCalculators", function() { return paginateListRouteCalculators; });
|
|
6725
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
6729
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
6726
6730
|
/* harmony import */ var _commands_ListRouteCalculatorsCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/ListRouteCalculatorsCommand */ "../../node_modules/@aws-sdk/client-location/dist-es/commands/ListRouteCalculatorsCommand.js");
|
|
6727
6731
|
/* harmony import */ var _Location__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Location */ "../../node_modules/@aws-sdk/client-location/dist-es/Location.js");
|
|
6728
6732
|
/* harmony import */ var _LocationClient__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../LocationClient */ "../../node_modules/@aws-sdk/client-location/dist-es/LocationClient.js");
|
|
@@ -6814,7 +6818,7 @@ function paginateListRouteCalculators(config, input) {
|
|
|
6814
6818
|
"use strict";
|
|
6815
6819
|
__webpack_require__.r(__webpack_exports__);
|
|
6816
6820
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "paginateListTrackerConsumers", function() { return paginateListTrackerConsumers; });
|
|
6817
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
6821
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
6818
6822
|
/* harmony import */ var _commands_ListTrackerConsumersCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/ListTrackerConsumersCommand */ "../../node_modules/@aws-sdk/client-location/dist-es/commands/ListTrackerConsumersCommand.js");
|
|
6819
6823
|
/* harmony import */ var _Location__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Location */ "../../node_modules/@aws-sdk/client-location/dist-es/Location.js");
|
|
6820
6824
|
/* harmony import */ var _LocationClient__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../LocationClient */ "../../node_modules/@aws-sdk/client-location/dist-es/LocationClient.js");
|
|
@@ -6906,7 +6910,7 @@ function paginateListTrackerConsumers(config, input) {
|
|
|
6906
6910
|
"use strict";
|
|
6907
6911
|
__webpack_require__.r(__webpack_exports__);
|
|
6908
6912
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "paginateListTrackers", function() { return paginateListTrackers; });
|
|
6909
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
6913
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
6910
6914
|
/* harmony import */ var _commands_ListTrackersCommand__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../commands/ListTrackersCommand */ "../../node_modules/@aws-sdk/client-location/dist-es/commands/ListTrackersCommand.js");
|
|
6911
6915
|
/* harmony import */ var _Location__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Location */ "../../node_modules/@aws-sdk/client-location/dist-es/Location.js");
|
|
6912
6916
|
/* harmony import */ var _LocationClient__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../LocationClient */ "../../node_modules/@aws-sdk/client-location/dist-es/LocationClient.js");
|
|
@@ -7152,7 +7156,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
7152
7156
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "deserializeAws_restJson1UpdatePlaceIndexCommand", function() { return deserializeAws_restJson1UpdatePlaceIndexCommand; });
|
|
7153
7157
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "deserializeAws_restJson1UpdateRouteCalculatorCommand", function() { return deserializeAws_restJson1UpdateRouteCalculatorCommand; });
|
|
7154
7158
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "deserializeAws_restJson1UpdateTrackerCommand", function() { return deserializeAws_restJson1UpdateTrackerCommand; });
|
|
7155
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
7159
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
7156
7160
|
/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/index.js");
|
|
7157
7161
|
/* harmony import */ var _aws_sdk_smithy_client__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/smithy-client */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/index.js");
|
|
7158
7162
|
|
|
@@ -15705,7 +15709,7 @@ var loadRestJsonErrorCode = function (output, data) {
|
|
|
15705
15709
|
"use strict";
|
|
15706
15710
|
__webpack_require__.r(__webpack_exports__);
|
|
15707
15711
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getRuntimeConfig", function() { return getRuntimeConfig; });
|
|
15708
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
15712
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
15709
15713
|
/* harmony import */ var _package_json__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../package.json */ "../../node_modules/@aws-sdk/client-location/package.json");
|
|
15710
15714
|
var _package_json__WEBPACK_IMPORTED_MODULE_1___namespace = /*#__PURE__*/__webpack_require__.t(/*! ../package.json */ "../../node_modules/@aws-sdk/client-location/package.json", 1);
|
|
15711
15715
|
/* harmony import */ var _aws_crypto_sha256_browser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-crypto/sha256-browser */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/build/index.js");
|
|
@@ -16806,8 +16810,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16806
16810
|
/* harmony import */ var _whatwgEncodingApi__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./whatwgEncodingApi */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js");
|
|
16807
16811
|
|
|
16808
16812
|
|
|
16809
|
-
|
|
16810
|
-
|
|
16813
|
+
var fromUtf8 = function (input) {
|
|
16814
|
+
return typeof TextEncoder === "function" ? Object(_whatwgEncodingApi__WEBPACK_IMPORTED_MODULE_1__["fromUtf8"])(input) : Object(_pureJs__WEBPACK_IMPORTED_MODULE_0__["fromUtf8"])(input);
|
|
16815
|
+
};
|
|
16816
|
+
var toUtf8 = function (input) {
|
|
16817
|
+
return typeof TextDecoder === "function" ? Object(_whatwgEncodingApi__WEBPACK_IMPORTED_MODULE_1__["toUtf8"])(input) : Object(_pureJs__WEBPACK_IMPORTED_MODULE_0__["toUtf8"])(input);
|
|
16818
|
+
};
|
|
16811
16819
|
|
|
16812
16820
|
|
|
16813
16821
|
/***/ }),
|
|
@@ -16823,44 +16831,44 @@ const toUtf8 = (input) => typeof TextDecoder === "function" ? Object(_whatwgEnco
|
|
|
16823
16831
|
__webpack_require__.r(__webpack_exports__);
|
|
16824
16832
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fromUtf8", function() { return fromUtf8; });
|
|
16825
16833
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "toUtf8", function() { return toUtf8; });
|
|
16826
|
-
|
|
16827
|
-
|
|
16828
|
-
for (
|
|
16829
|
-
|
|
16834
|
+
var fromUtf8 = function (input) {
|
|
16835
|
+
var bytes = [];
|
|
16836
|
+
for (var i = 0, len = input.length; i < len; i++) {
|
|
16837
|
+
var value = input.charCodeAt(i);
|
|
16830
16838
|
if (value < 0x80) {
|
|
16831
16839
|
bytes.push(value);
|
|
16832
16840
|
}
|
|
16833
16841
|
else if (value < 0x800) {
|
|
16834
|
-
bytes.push((value >> 6) |
|
|
16842
|
+
bytes.push((value >> 6) | 192, (value & 63) | 128);
|
|
16835
16843
|
}
|
|
16836
16844
|
else if (i + 1 < input.length && (value & 0xfc00) === 0xd800 && (input.charCodeAt(i + 1) & 0xfc00) === 0xdc00) {
|
|
16837
|
-
|
|
16838
|
-
bytes.push((surrogatePair >> 18) |
|
|
16845
|
+
var surrogatePair = 0x10000 + ((value & 1023) << 10) + (input.charCodeAt(++i) & 1023);
|
|
16846
|
+
bytes.push((surrogatePair >> 18) | 240, ((surrogatePair >> 12) & 63) | 128, ((surrogatePair >> 6) & 63) | 128, (surrogatePair & 63) | 128);
|
|
16839
16847
|
}
|
|
16840
16848
|
else {
|
|
16841
|
-
bytes.push((value >> 12) |
|
|
16849
|
+
bytes.push((value >> 12) | 224, ((value >> 6) & 63) | 128, (value & 63) | 128);
|
|
16842
16850
|
}
|
|
16843
16851
|
}
|
|
16844
16852
|
return Uint8Array.from(bytes);
|
|
16845
16853
|
};
|
|
16846
|
-
|
|
16847
|
-
|
|
16848
|
-
for (
|
|
16849
|
-
|
|
16854
|
+
var toUtf8 = function (input) {
|
|
16855
|
+
var decoded = "";
|
|
16856
|
+
for (var i = 0, len = input.length; i < len; i++) {
|
|
16857
|
+
var byte = input[i];
|
|
16850
16858
|
if (byte < 0x80) {
|
|
16851
16859
|
decoded += String.fromCharCode(byte);
|
|
16852
16860
|
}
|
|
16853
|
-
else if (
|
|
16854
|
-
|
|
16855
|
-
decoded += String.fromCharCode(((byte &
|
|
16861
|
+
else if (192 <= byte && byte < 224) {
|
|
16862
|
+
var nextByte = input[++i];
|
|
16863
|
+
decoded += String.fromCharCode(((byte & 31) << 6) | (nextByte & 63));
|
|
16856
16864
|
}
|
|
16857
|
-
else if (
|
|
16858
|
-
|
|
16859
|
-
|
|
16865
|
+
else if (240 <= byte && byte < 365) {
|
|
16866
|
+
var surrogatePair = [byte, input[++i], input[++i], input[++i]];
|
|
16867
|
+
var encoded = "%" + surrogatePair.map(function (byteValue) { return byteValue.toString(16); }).join("%");
|
|
16860
16868
|
decoded += decodeURIComponent(encoded);
|
|
16861
16869
|
}
|
|
16862
16870
|
else {
|
|
16863
|
-
decoded += String.fromCharCode(((byte &
|
|
16871
|
+
decoded += String.fromCharCode(((byte & 15) << 12) | ((input[++i] & 63) << 6) | (input[++i] & 63));
|
|
16864
16872
|
}
|
|
16865
16873
|
}
|
|
16866
16874
|
return decoded;
|
|
@@ -17603,7 +17611,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
17603
17611
|
"use strict";
|
|
17604
17612
|
__webpack_require__.r(__webpack_exports__);
|
|
17605
17613
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "resolveCustomEndpointsConfig", function() { return resolveCustomEndpointsConfig; });
|
|
17606
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
17614
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
17607
17615
|
/* harmony import */ var _utils_normalizeBoolean__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./utils/normalizeBoolean */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/normalizeBoolean.js");
|
|
17608
17616
|
/* harmony import */ var _utils_normalizeEndpoint__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils/normalizeEndpoint */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/normalizeEndpoint.js");
|
|
17609
17617
|
|
|
@@ -17627,7 +17635,7 @@ var resolveCustomEndpointsConfig = function (input) {
|
|
|
17627
17635
|
"use strict";
|
|
17628
17636
|
__webpack_require__.r(__webpack_exports__);
|
|
17629
17637
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "resolveEndpointsConfig", function() { return resolveEndpointsConfig; });
|
|
17630
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
17638
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
17631
17639
|
/* harmony import */ var _utils_getEndpointFromRegion__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./utils/getEndpointFromRegion */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js");
|
|
17632
17640
|
/* harmony import */ var _utils_normalizeBoolean__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils/normalizeBoolean */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/normalizeBoolean.js");
|
|
17633
17641
|
/* harmony import */ var _utils_normalizeEndpoint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./utils/normalizeEndpoint */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/normalizeEndpoint.js");
|
|
@@ -17657,7 +17665,7 @@ var resolveEndpointsConfig = function (input) {
|
|
|
17657
17665
|
"use strict";
|
|
17658
17666
|
__webpack_require__.r(__webpack_exports__);
|
|
17659
17667
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getEndpointFromRegion", function() { return getEndpointFromRegion; });
|
|
17660
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
17668
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
17661
17669
|
|
|
17662
17670
|
var getEndpointFromRegion = function (input) { return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__awaiter"])(void 0, void 0, void 0, function () {
|
|
17663
17671
|
var _a, tls, region, dnsHostRegex, useDualstackEndpoint, useFipsEndpoint, hostname;
|
|
@@ -17897,7 +17905,7 @@ var isFipsRegion = function (region) {
|
|
|
17897
17905
|
"use strict";
|
|
17898
17906
|
__webpack_require__.r(__webpack_exports__);
|
|
17899
17907
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "resolveRegionConfig", function() { return resolveRegionConfig; });
|
|
17900
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
17908
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
17901
17909
|
/* harmony import */ var _getRealRegion__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getRealRegion */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/getRealRegion.js");
|
|
17902
17910
|
/* harmony import */ var _isFipsRegion__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isFipsRegion */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/isFipsRegion.js");
|
|
17903
17911
|
|
|
@@ -18009,7 +18017,7 @@ var getHostnameFromVariants = function (variants, _a) {
|
|
|
18009
18017
|
"use strict";
|
|
18010
18018
|
__webpack_require__.r(__webpack_exports__);
|
|
18011
18019
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getRegionInfo", function() { return getRegionInfo; });
|
|
18012
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
18020
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
18013
18021
|
/* harmony import */ var _getHostnameFromVariants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./getHostnameFromVariants */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js");
|
|
18014
18022
|
/* harmony import */ var _getResolvedHostname__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getResolvedHostname */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedHostname.js");
|
|
18015
18023
|
/* harmony import */ var _getResolvedPartition__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./getResolvedPartition */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedPartition.js");
|
|
@@ -18143,7 +18151,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
18143
18151
|
"use strict";
|
|
18144
18152
|
__webpack_require__.r(__webpack_exports__);
|
|
18145
18153
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "FetchHttpHandler", function() { return FetchHttpHandler; });
|
|
18146
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
18154
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
18147
18155
|
/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/index.js");
|
|
18148
18156
|
/* harmony import */ var _aws_sdk_querystring_builder__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/querystring-builder */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/querystring-builder/dist-es/index.js");
|
|
18149
18157
|
/* harmony import */ var _request_timeout__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./request-timeout */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/fetch-http-handler/dist-es/request-timeout.js");
|
|
@@ -18323,7 +18331,7 @@ function requestTimeout(timeoutInMs) {
|
|
|
18323
18331
|
"use strict";
|
|
18324
18332
|
__webpack_require__.r(__webpack_exports__);
|
|
18325
18333
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "streamCollector", function() { return streamCollector; });
|
|
18326
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
18334
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
18327
18335
|
/* harmony import */ var _aws_sdk_util_base64_browser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-base64-browser */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-base64-browser/dist-es/index.js");
|
|
18328
18336
|
|
|
18329
18337
|
|
|
@@ -18480,7 +18488,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
18480
18488
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "contentLengthMiddleware", function() { return contentLengthMiddleware; });
|
|
18481
18489
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "contentLengthMiddlewareOptions", function() { return contentLengthMiddlewareOptions; });
|
|
18482
18490
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getContentLengthPlugin", function() { return getContentLengthPlugin; });
|
|
18483
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
18491
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
18484
18492
|
/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/index.js");
|
|
18485
18493
|
|
|
18486
18494
|
|
|
@@ -18538,7 +18546,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
18538
18546
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hostHeaderMiddleware", function() { return hostHeaderMiddleware; });
|
|
18539
18547
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hostHeaderMiddlewareOptions", function() { return hostHeaderMiddlewareOptions; });
|
|
18540
18548
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getHostHeaderPlugin", function() { return getHostHeaderPlugin; });
|
|
18541
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
18549
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
18542
18550
|
/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/index.js");
|
|
18543
18551
|
|
|
18544
18552
|
|
|
@@ -18615,7 +18623,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
18615
18623
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "loggerMiddleware", function() { return loggerMiddleware; });
|
|
18616
18624
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "loggerMiddlewareOptions", function() { return loggerMiddlewareOptions; });
|
|
18617
18625
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getLoggerPlugin", function() { return getLoggerPlugin; });
|
|
18618
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
18626
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
18619
18627
|
|
|
18620
18628
|
var loggerMiddleware = function () {
|
|
18621
18629
|
return function (next, context) {
|
|
@@ -18672,7 +18680,7 @@ var getLoggerPlugin = function (options) { return ({
|
|
|
18672
18680
|
"use strict";
|
|
18673
18681
|
__webpack_require__.r(__webpack_exports__);
|
|
18674
18682
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AdaptiveRetryStrategy", function() { return AdaptiveRetryStrategy; });
|
|
18675
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
18683
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
18676
18684
|
/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./config */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/config.js");
|
|
18677
18685
|
/* harmony import */ var _DefaultRateLimiter__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./DefaultRateLimiter */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/DefaultRateLimiter.js");
|
|
18678
18686
|
/* harmony import */ var _StandardRetryStrategy__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./StandardRetryStrategy */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js");
|
|
@@ -18724,7 +18732,7 @@ var AdaptiveRetryStrategy = (function (_super) {
|
|
|
18724
18732
|
"use strict";
|
|
18725
18733
|
__webpack_require__.r(__webpack_exports__);
|
|
18726
18734
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DefaultRateLimiter", function() { return DefaultRateLimiter; });
|
|
18727
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
18735
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
18728
18736
|
/* harmony import */ var _aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/service-error-classification */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/service-error-classification/dist-es/index.js");
|
|
18729
18737
|
|
|
18730
18738
|
|
|
@@ -18859,7 +18867,7 @@ var DefaultRateLimiter = (function () {
|
|
|
18859
18867
|
"use strict";
|
|
18860
18868
|
__webpack_require__.r(__webpack_exports__);
|
|
18861
18869
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "StandardRetryStrategy", function() { return StandardRetryStrategy; });
|
|
18862
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
18870
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
18863
18871
|
/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/index.js");
|
|
18864
18872
|
/* harmony import */ var _aws_sdk_service_error_classification__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/service-error-classification */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/service-error-classification/dist-es/index.js");
|
|
18865
18873
|
/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! uuid */ "../../node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/index.js");
|
|
@@ -19041,7 +19049,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19041
19049
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ENV_RETRY_MODE", function() { return ENV_RETRY_MODE; });
|
|
19042
19050
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CONFIG_RETRY_MODE", function() { return CONFIG_RETRY_MODE; });
|
|
19043
19051
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "NODE_RETRY_MODE_CONFIG_OPTIONS", function() { return NODE_RETRY_MODE_CONFIG_OPTIONS; });
|
|
19044
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
19052
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
19045
19053
|
/* harmony import */ var _AdaptiveRetryStrategy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AdaptiveRetryStrategy */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/AdaptiveRetryStrategy.js");
|
|
19046
19054
|
/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./config */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/config.js");
|
|
19047
19055
|
/* harmony import */ var _StandardRetryStrategy__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./StandardRetryStrategy */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js");
|
|
@@ -19306,7 +19314,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19306
19314
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "omitRetryHeadersMiddleware", function() { return omitRetryHeadersMiddleware; });
|
|
19307
19315
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "omitRetryHeadersMiddlewareOptions", function() { return omitRetryHeadersMiddlewareOptions; });
|
|
19308
19316
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getOmitRetryHeadersPlugin", function() { return getOmitRetryHeadersPlugin; });
|
|
19309
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
19317
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
19310
19318
|
/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/index.js");
|
|
19311
19319
|
/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js");
|
|
19312
19320
|
|
|
@@ -19377,7 +19385,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19377
19385
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "retryMiddleware", function() { return retryMiddleware; });
|
|
19378
19386
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "retryMiddlewareOptions", function() { return retryMiddlewareOptions; });
|
|
19379
19387
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getRetryPlugin", function() { return getRetryPlugin; });
|
|
19380
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
19388
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
19381
19389
|
|
|
19382
19390
|
var retryMiddleware = function (options) {
|
|
19383
19391
|
return function (next, context) {
|
|
@@ -19436,7 +19444,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19436
19444
|
"use strict";
|
|
19437
19445
|
__webpack_require__.r(__webpack_exports__);
|
|
19438
19446
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "deserializerMiddleware", function() { return deserializerMiddleware; });
|
|
19439
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
19447
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
19440
19448
|
|
|
19441
19449
|
var deserializerMiddleware = function (options, deserializer) {
|
|
19442
19450
|
return function (next, context) {
|
|
@@ -19549,7 +19557,7 @@ function getSerdePlugin(config, serializer, deserializer) {
|
|
|
19549
19557
|
"use strict";
|
|
19550
19558
|
__webpack_require__.r(__webpack_exports__);
|
|
19551
19559
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "serializerMiddleware", function() { return serializerMiddleware; });
|
|
19552
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
19560
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
19553
19561
|
|
|
19554
19562
|
var serializerMiddleware = function (options, serializer) {
|
|
19555
19563
|
return function (next, context) {
|
|
@@ -19581,7 +19589,7 @@ var serializerMiddleware = function (options, serializer) {
|
|
|
19581
19589
|
__webpack_require__.r(__webpack_exports__);
|
|
19582
19590
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "resolveAwsAuthConfig", function() { return resolveAwsAuthConfig; });
|
|
19583
19591
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "resolveSigV4AuthConfig", function() { return resolveSigV4AuthConfig; });
|
|
19584
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
19592
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
19585
19593
|
/* harmony import */ var _aws_sdk_property_provider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/property-provider */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/index.js");
|
|
19586
19594
|
/* harmony import */ var _aws_sdk_signature_v4__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/signature-v4 */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/index.js");
|
|
19587
19595
|
|
|
@@ -19717,7 +19725,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19717
19725
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "awsAuthMiddlewareOptions", function() { return awsAuthMiddlewareOptions; });
|
|
19718
19726
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getAwsAuthPlugin", function() { return getAwsAuthPlugin; });
|
|
19719
19727
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getSigV4AuthPlugin", function() { return getSigV4AuthPlugin; });
|
|
19720
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
19728
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
19721
19729
|
/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/index.js");
|
|
19722
19730
|
/* harmony import */ var _utils_getSkewCorrectedDate__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils/getSkewCorrectedDate */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js");
|
|
19723
19731
|
/* harmony import */ var _utils_getUpdatedSystemClockOffset__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./utils/getUpdatedSystemClockOffset */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getUpdatedSystemClockOffset.js");
|
|
@@ -19853,7 +19861,7 @@ var isClockSkewed = function (clockTime, systemClockOffset) {
|
|
|
19853
19861
|
"use strict";
|
|
19854
19862
|
__webpack_require__.r(__webpack_exports__);
|
|
19855
19863
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "constructStack", function() { return constructStack; });
|
|
19856
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
19864
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
19857
19865
|
|
|
19858
19866
|
var constructStack = function () {
|
|
19859
19867
|
var absoluteEntries = [];
|
|
@@ -20097,7 +20105,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
20097
20105
|
"use strict";
|
|
20098
20106
|
__webpack_require__.r(__webpack_exports__);
|
|
20099
20107
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "resolveUserAgentConfig", function() { return resolveUserAgentConfig; });
|
|
20100
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
20108
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
20101
20109
|
|
|
20102
20110
|
function resolveUserAgentConfig(input) {
|
|
20103
20111
|
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__assign"])(Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__assign"])({}, input), { customUserAgent: typeof input.customUserAgent === "string" ? [[input.customUserAgent]] : input.customUserAgent });
|
|
@@ -20164,7 +20172,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
20164
20172
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "userAgentMiddleware", function() { return userAgentMiddleware; });
|
|
20165
20173
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getUserAgentMiddlewareOptions", function() { return getUserAgentMiddlewareOptions; });
|
|
20166
20174
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getUserAgentPlugin", function() { return getUserAgentPlugin; });
|
|
20167
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
20175
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
20168
20176
|
/* harmony import */ var _aws_sdk_protocol_http__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/protocol-http */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/protocol-http/dist-es/index.js");
|
|
20169
20177
|
/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js");
|
|
20170
20178
|
|
|
@@ -20246,7 +20254,7 @@ var getUserAgentPlugin = function (config) { return ({
|
|
|
20246
20254
|
__webpack_require__.r(__webpack_exports__);
|
|
20247
20255
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ProviderError", function() { return ProviderError; });
|
|
20248
20256
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CredentialsProviderError", function() { return CredentialsProviderError; });
|
|
20249
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
20257
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
20250
20258
|
|
|
20251
20259
|
var ProviderError = (function (_super) {
|
|
20252
20260
|
Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__extends"])(ProviderError, _super);
|
|
@@ -20305,7 +20313,7 @@ var CredentialsProviderError = (function (_super) {
|
|
|
20305
20313
|
"use strict";
|
|
20306
20314
|
__webpack_require__.r(__webpack_exports__);
|
|
20307
20315
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "chain", function() { return chain; });
|
|
20308
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
20316
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
20309
20317
|
/* harmony import */ var _ProviderError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ProviderError */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js");
|
|
20310
20318
|
|
|
20311
20319
|
|
|
@@ -20405,7 +20413,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
20405
20413
|
"use strict";
|
|
20406
20414
|
__webpack_require__.r(__webpack_exports__);
|
|
20407
20415
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "memoize", function() { return memoize; });
|
|
20408
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
20416
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
20409
20417
|
|
|
20410
20418
|
var memoize = function (provider, isExpired, requiresRefresh) {
|
|
20411
20419
|
var resolved;
|
|
@@ -20504,7 +20512,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
20504
20512
|
"use strict";
|
|
20505
20513
|
__webpack_require__.r(__webpack_exports__);
|
|
20506
20514
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "HttpRequest", function() { return HttpRequest; });
|
|
20507
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
20515
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
20508
20516
|
|
|
20509
20517
|
var HttpRequest = (function () {
|
|
20510
20518
|
function HttpRequest(options) {
|
|
@@ -20636,7 +20644,7 @@ function isValidHostname(hostname) {
|
|
|
20636
20644
|
"use strict";
|
|
20637
20645
|
__webpack_require__.r(__webpack_exports__);
|
|
20638
20646
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "buildQueryString", function() { return buildQueryString; });
|
|
20639
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
20647
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
20640
20648
|
/* harmony import */ var _aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-uri-escape */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-uri-escape/dist-es/index.js");
|
|
20641
20649
|
|
|
20642
20650
|
|
|
@@ -20685,7 +20693,7 @@ function buildQueryString(query) {
|
|
|
20685
20693
|
"use strict";
|
|
20686
20694
|
__webpack_require__.r(__webpack_exports__);
|
|
20687
20695
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "parseQueryString", function() { return parseQueryString; });
|
|
20688
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
20696
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
20689
20697
|
|
|
20690
20698
|
function parseQueryString(querystring) {
|
|
20691
20699
|
var e_1, _a;
|
|
@@ -20810,7 +20818,7 @@ var isTransientError = function (error) {
|
|
|
20810
20818
|
"use strict";
|
|
20811
20819
|
__webpack_require__.r(__webpack_exports__);
|
|
20812
20820
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SignatureV4", function() { return SignatureV4; });
|
|
20813
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
20821
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
20814
20822
|
/* harmony import */ var _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-hex-encoding */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js");
|
|
20815
20823
|
/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/constants.js");
|
|
20816
20824
|
/* harmony import */ var _credentialDerivation__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./credentialDerivation */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/credentialDerivation.js");
|
|
@@ -21106,7 +21114,7 @@ var getCanonicalHeaderList = function (headers) { return Object.keys(headers).so
|
|
|
21106
21114
|
__webpack_require__.r(__webpack_exports__);
|
|
21107
21115
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cloneRequest", function() { return cloneRequest; });
|
|
21108
21116
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cloneQuery", function() { return cloneQuery; });
|
|
21109
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
21117
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
21110
21118
|
|
|
21111
21119
|
var cloneRequest = function (_a) {
|
|
21112
21120
|
var headers = _a.headers, query = _a.query, rest = Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__rest"])(_a, ["headers", "query"]);
|
|
@@ -21218,7 +21226,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
21218
21226
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "createScope", function() { return createScope; });
|
|
21219
21227
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getSigningKey", function() { return getSigningKey; });
|
|
21220
21228
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "clearCredentialCache", function() { return clearCredentialCache; });
|
|
21221
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
21229
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
21222
21230
|
/* harmony import */ var _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-hex-encoding */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js");
|
|
21223
21231
|
/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/constants.js");
|
|
21224
21232
|
|
|
@@ -21301,7 +21309,7 @@ var hmac = function (ctor, secret, data) {
|
|
|
21301
21309
|
"use strict";
|
|
21302
21310
|
__webpack_require__.r(__webpack_exports__);
|
|
21303
21311
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getCanonicalHeaders", function() { return getCanonicalHeaders; });
|
|
21304
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
21312
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
21305
21313
|
/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./constants */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/constants.js");
|
|
21306
21314
|
|
|
21307
21315
|
|
|
@@ -21347,7 +21355,7 @@ var getCanonicalHeaders = function (_a, unsignableHeaders, signableHeaders) {
|
|
|
21347
21355
|
"use strict";
|
|
21348
21356
|
__webpack_require__.r(__webpack_exports__);
|
|
21349
21357
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getCanonicalQuery", function() { return getCanonicalQuery; });
|
|
21350
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
21358
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
21351
21359
|
/* harmony import */ var _aws_sdk_util_uri_escape__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/util-uri-escape */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-uri-escape/dist-es/index.js");
|
|
21352
21360
|
/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/constants.js");
|
|
21353
21361
|
|
|
@@ -21407,7 +21415,7 @@ var getCanonicalQuery = function (_a) {
|
|
|
21407
21415
|
"use strict";
|
|
21408
21416
|
__webpack_require__.r(__webpack_exports__);
|
|
21409
21417
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getPayloadHash", function() { return getPayloadHash; });
|
|
21410
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
21418
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
21411
21419
|
/* harmony import */ var _aws_sdk_is_array_buffer__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/is-array-buffer */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/is-array-buffer/dist-es/index.js");
|
|
21412
21420
|
/* harmony import */ var _aws_sdk_util_hex_encoding__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/util-hex-encoding */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js");
|
|
21413
21421
|
/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./constants */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/constants.js");
|
|
@@ -21468,7 +21476,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
21468
21476
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hasHeader", function() { return hasHeader; });
|
|
21469
21477
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getHeaderValue", function() { return getHeaderValue; });
|
|
21470
21478
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "deleteHeader", function() { return deleteHeader; });
|
|
21471
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
21479
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
21472
21480
|
|
|
21473
21481
|
var hasHeader = function (soughtHeader, headers) {
|
|
21474
21482
|
var e_1, _a;
|
|
@@ -21594,7 +21602,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
21594
21602
|
"use strict";
|
|
21595
21603
|
__webpack_require__.r(__webpack_exports__);
|
|
21596
21604
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "moveHeadersToQuery", function() { return moveHeadersToQuery; });
|
|
21597
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
21605
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
21598
21606
|
/* harmony import */ var _cloneRequest__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./cloneRequest */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/cloneRequest.js");
|
|
21599
21607
|
|
|
21600
21608
|
|
|
@@ -21669,7 +21677,7 @@ var normalizeCredentialsProvider = function (credentials) {
|
|
|
21669
21677
|
"use strict";
|
|
21670
21678
|
__webpack_require__.r(__webpack_exports__);
|
|
21671
21679
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "prepareRequest", function() { return prepareRequest; });
|
|
21672
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
21680
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
21673
21681
|
/* harmony import */ var _cloneRequest__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./cloneRequest */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/cloneRequest.js");
|
|
21674
21682
|
/* harmony import */ var _constants__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constants */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/signature-v4/dist-es/constants.js");
|
|
21675
21683
|
|
|
@@ -21823,7 +21831,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
21823
21831
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "parseRfc3339DateTime", function() { return parseRfc3339DateTime; });
|
|
21824
21832
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "parseRfc7231DateTime", function() { return parseRfc7231DateTime; });
|
|
21825
21833
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "parseEpochTimestamp", function() { return parseEpochTimestamp; });
|
|
21826
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
21834
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
21827
21835
|
/* harmony import */ var _parse_utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./parse-utils */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js");
|
|
21828
21836
|
|
|
21829
21837
|
|
|
@@ -22239,7 +22247,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22239
22247
|
__webpack_require__.r(__webpack_exports__);
|
|
22240
22248
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "StringWrapper", function() { return StringWrapper; });
|
|
22241
22249
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "LazyJsonString", function() { return LazyJsonString; });
|
|
22242
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
22250
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
22243
22251
|
|
|
22244
22252
|
var StringWrapper = function () {
|
|
22245
22253
|
var Class = Object.getPrototypeOf(this).constructor;
|
|
@@ -22318,7 +22326,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22318
22326
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "strictParseInt32", function() { return strictParseInt32; });
|
|
22319
22327
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "strictParseShort", function() { return strictParseShort; });
|
|
22320
22328
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "strictParseByte", function() { return strictParseByte; });
|
|
22321
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
22329
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
22322
22330
|
|
|
22323
22331
|
var parseBoolean = function (value) {
|
|
22324
22332
|
switch (value) {
|
|
@@ -22830,7 +22838,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22830
22838
|
"use strict";
|
|
22831
22839
|
__webpack_require__.r(__webpack_exports__);
|
|
22832
22840
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "resolveDefaultsModeConfig", function() { return resolveDefaultsModeConfig; });
|
|
22833
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
22841
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
22834
22842
|
/* harmony import */ var _aws_sdk_property_provider__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-sdk/property-provider */ "../../node_modules/@aws-sdk/client-location/node_modules/@aws-sdk/property-provider/dist-es/index.js");
|
|
22835
22843
|
/* harmony import */ var bowser__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! bowser */ "../../node_modules/bowser/es5.js");
|
|
22836
22844
|
/* harmony import */ var bowser__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(bowser__WEBPACK_IMPORTED_MODULE_2__);
|
|
@@ -23001,7 +23009,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
23001
23009
|
"use strict";
|
|
23002
23010
|
__webpack_require__.r(__webpack_exports__);
|
|
23003
23011
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "defaultUserAgent", function() { return defaultUserAgent; });
|
|
23004
|
-
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules
|
|
23012
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
23005
23013
|
/* harmony import */ var bowser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! bowser */ "../../node_modules/bowser/es5.js");
|
|
23006
23014
|
/* harmony import */ var bowser__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(bowser__WEBPACK_IMPORTED_MODULE_1__);
|
|
23007
23015
|
|
|
@@ -23135,297 +23143,11 @@ function toUtf8(input) {
|
|
|
23135
23143
|
|
|
23136
23144
|
/***/ }),
|
|
23137
23145
|
|
|
23138
|
-
/***/ "../../node_modules/@aws-sdk/client-location/node_modules/
|
|
23139
|
-
|
|
23140
|
-
!*** /root/amplify-js/node_modules/@aws-sdk/client-location/node_modules/
|
|
23141
|
-
|
|
23142
|
-
/*! exports provided:
|
|
23143
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
23144
|
-
|
|
23145
|
-
"use strict";
|
|
23146
|
-
__webpack_require__.r(__webpack_exports__);
|
|
23147
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__extends", function() { return __extends; });
|
|
23148
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__assign", function() { return __assign; });
|
|
23149
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__rest", function() { return __rest; });
|
|
23150
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__decorate", function() { return __decorate; });
|
|
23151
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__param", function() { return __param; });
|
|
23152
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__metadata", function() { return __metadata; });
|
|
23153
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__awaiter", function() { return __awaiter; });
|
|
23154
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__generator", function() { return __generator; });
|
|
23155
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__createBinding", function() { return __createBinding; });
|
|
23156
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__exportStar", function() { return __exportStar; });
|
|
23157
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__values", function() { return __values; });
|
|
23158
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__read", function() { return __read; });
|
|
23159
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spread", function() { return __spread; });
|
|
23160
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spreadArrays", function() { return __spreadArrays; });
|
|
23161
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spreadArray", function() { return __spreadArray; });
|
|
23162
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__await", function() { return __await; });
|
|
23163
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncGenerator", function() { return __asyncGenerator; });
|
|
23164
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncDelegator", function() { return __asyncDelegator; });
|
|
23165
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncValues", function() { return __asyncValues; });
|
|
23166
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__makeTemplateObject", function() { return __makeTemplateObject; });
|
|
23167
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__importStar", function() { return __importStar; });
|
|
23168
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__importDefault", function() { return __importDefault; });
|
|
23169
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__classPrivateFieldGet", function() { return __classPrivateFieldGet; });
|
|
23170
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__classPrivateFieldSet", function() { return __classPrivateFieldSet; });
|
|
23171
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__classPrivateFieldIn", function() { return __classPrivateFieldIn; });
|
|
23172
|
-
/******************************************************************************
|
|
23173
|
-
Copyright (c) Microsoft Corporation.
|
|
23174
|
-
|
|
23175
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
23176
|
-
purpose with or without fee is hereby granted.
|
|
23177
|
-
|
|
23178
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
23179
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
23180
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
23181
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
23182
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
23183
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
23184
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
23185
|
-
***************************************************************************** */
|
|
23186
|
-
/* global Reflect, Promise */
|
|
23187
|
-
|
|
23188
|
-
var extendStatics = function(d, b) {
|
|
23189
|
-
extendStatics = Object.setPrototypeOf ||
|
|
23190
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
23191
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
23192
|
-
return extendStatics(d, b);
|
|
23193
|
-
};
|
|
23194
|
-
|
|
23195
|
-
function __extends(d, b) {
|
|
23196
|
-
if (typeof b !== "function" && b !== null)
|
|
23197
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
23198
|
-
extendStatics(d, b);
|
|
23199
|
-
function __() { this.constructor = d; }
|
|
23200
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
23201
|
-
}
|
|
23202
|
-
|
|
23203
|
-
var __assign = function() {
|
|
23204
|
-
__assign = Object.assign || function __assign(t) {
|
|
23205
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
23206
|
-
s = arguments[i];
|
|
23207
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
23208
|
-
}
|
|
23209
|
-
return t;
|
|
23210
|
-
}
|
|
23211
|
-
return __assign.apply(this, arguments);
|
|
23212
|
-
}
|
|
23213
|
-
|
|
23214
|
-
function __rest(s, e) {
|
|
23215
|
-
var t = {};
|
|
23216
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
23217
|
-
t[p] = s[p];
|
|
23218
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
23219
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
23220
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
23221
|
-
t[p[i]] = s[p[i]];
|
|
23222
|
-
}
|
|
23223
|
-
return t;
|
|
23224
|
-
}
|
|
23225
|
-
|
|
23226
|
-
function __decorate(decorators, target, key, desc) {
|
|
23227
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
23228
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
23229
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
23230
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
23231
|
-
}
|
|
23232
|
-
|
|
23233
|
-
function __param(paramIndex, decorator) {
|
|
23234
|
-
return function (target, key) { decorator(target, key, paramIndex); }
|
|
23235
|
-
}
|
|
23236
|
-
|
|
23237
|
-
function __metadata(metadataKey, metadataValue) {
|
|
23238
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
|
|
23239
|
-
}
|
|
23240
|
-
|
|
23241
|
-
function __awaiter(thisArg, _arguments, P, generator) {
|
|
23242
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
23243
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
23244
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
23245
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
23246
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
23247
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
23248
|
-
});
|
|
23249
|
-
}
|
|
23250
|
-
|
|
23251
|
-
function __generator(thisArg, body) {
|
|
23252
|
-
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
23253
|
-
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
23254
|
-
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
23255
|
-
function step(op) {
|
|
23256
|
-
if (f) throw new TypeError("Generator is already executing.");
|
|
23257
|
-
while (_) try {
|
|
23258
|
-
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
23259
|
-
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
23260
|
-
switch (op[0]) {
|
|
23261
|
-
case 0: case 1: t = op; break;
|
|
23262
|
-
case 4: _.label++; return { value: op[1], done: false };
|
|
23263
|
-
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
23264
|
-
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
23265
|
-
default:
|
|
23266
|
-
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
23267
|
-
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
23268
|
-
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
23269
|
-
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
23270
|
-
if (t[2]) _.ops.pop();
|
|
23271
|
-
_.trys.pop(); continue;
|
|
23272
|
-
}
|
|
23273
|
-
op = body.call(thisArg, _);
|
|
23274
|
-
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
23275
|
-
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
23276
|
-
}
|
|
23277
|
-
}
|
|
23278
|
-
|
|
23279
|
-
var __createBinding = Object.create ? (function(o, m, k, k2) {
|
|
23280
|
-
if (k2 === undefined) k2 = k;
|
|
23281
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
23282
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
23283
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
23284
|
-
}
|
|
23285
|
-
Object.defineProperty(o, k2, desc);
|
|
23286
|
-
}) : (function(o, m, k, k2) {
|
|
23287
|
-
if (k2 === undefined) k2 = k;
|
|
23288
|
-
o[k2] = m[k];
|
|
23289
|
-
});
|
|
23290
|
-
|
|
23291
|
-
function __exportStar(m, o) {
|
|
23292
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
|
|
23293
|
-
}
|
|
23294
|
-
|
|
23295
|
-
function __values(o) {
|
|
23296
|
-
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
23297
|
-
if (m) return m.call(o);
|
|
23298
|
-
if (o && typeof o.length === "number") return {
|
|
23299
|
-
next: function () {
|
|
23300
|
-
if (o && i >= o.length) o = void 0;
|
|
23301
|
-
return { value: o && o[i++], done: !o };
|
|
23302
|
-
}
|
|
23303
|
-
};
|
|
23304
|
-
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
23305
|
-
}
|
|
23306
|
-
|
|
23307
|
-
function __read(o, n) {
|
|
23308
|
-
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
|
23309
|
-
if (!m) return o;
|
|
23310
|
-
var i = m.call(o), r, ar = [], e;
|
|
23311
|
-
try {
|
|
23312
|
-
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
|
23313
|
-
}
|
|
23314
|
-
catch (error) { e = { error: error }; }
|
|
23315
|
-
finally {
|
|
23316
|
-
try {
|
|
23317
|
-
if (r && !r.done && (m = i["return"])) m.call(i);
|
|
23318
|
-
}
|
|
23319
|
-
finally { if (e) throw e.error; }
|
|
23320
|
-
}
|
|
23321
|
-
return ar;
|
|
23322
|
-
}
|
|
23323
|
-
|
|
23324
|
-
/** @deprecated */
|
|
23325
|
-
function __spread() {
|
|
23326
|
-
for (var ar = [], i = 0; i < arguments.length; i++)
|
|
23327
|
-
ar = ar.concat(__read(arguments[i]));
|
|
23328
|
-
return ar;
|
|
23329
|
-
}
|
|
23330
|
-
|
|
23331
|
-
/** @deprecated */
|
|
23332
|
-
function __spreadArrays() {
|
|
23333
|
-
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
|
23334
|
-
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
|
23335
|
-
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
|
23336
|
-
r[k] = a[j];
|
|
23337
|
-
return r;
|
|
23338
|
-
}
|
|
23339
|
-
|
|
23340
|
-
function __spreadArray(to, from, pack) {
|
|
23341
|
-
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
23342
|
-
if (ar || !(i in from)) {
|
|
23343
|
-
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
23344
|
-
ar[i] = from[i];
|
|
23345
|
-
}
|
|
23346
|
-
}
|
|
23347
|
-
return to.concat(ar || Array.prototype.slice.call(from));
|
|
23348
|
-
}
|
|
23349
|
-
|
|
23350
|
-
function __await(v) {
|
|
23351
|
-
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
|
23352
|
-
}
|
|
23353
|
-
|
|
23354
|
-
function __asyncGenerator(thisArg, _arguments, generator) {
|
|
23355
|
-
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
|
23356
|
-
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
|
23357
|
-
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
|
23358
|
-
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
|
23359
|
-
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
|
|
23360
|
-
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
|
23361
|
-
function fulfill(value) { resume("next", value); }
|
|
23362
|
-
function reject(value) { resume("throw", value); }
|
|
23363
|
-
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
|
|
23364
|
-
}
|
|
23365
|
-
|
|
23366
|
-
function __asyncDelegator(o) {
|
|
23367
|
-
var i, p;
|
|
23368
|
-
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
|
23369
|
-
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
|
23370
|
-
}
|
|
23371
|
-
|
|
23372
|
-
function __asyncValues(o) {
|
|
23373
|
-
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
|
23374
|
-
var m = o[Symbol.asyncIterator], i;
|
|
23375
|
-
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
|
23376
|
-
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
|
23377
|
-
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
|
23378
|
-
}
|
|
23379
|
-
|
|
23380
|
-
function __makeTemplateObject(cooked, raw) {
|
|
23381
|
-
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
23382
|
-
return cooked;
|
|
23383
|
-
};
|
|
23384
|
-
|
|
23385
|
-
var __setModuleDefault = Object.create ? (function(o, v) {
|
|
23386
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
23387
|
-
}) : function(o, v) {
|
|
23388
|
-
o["default"] = v;
|
|
23389
|
-
};
|
|
23390
|
-
|
|
23391
|
-
function __importStar(mod) {
|
|
23392
|
-
if (mod && mod.__esModule) return mod;
|
|
23393
|
-
var result = {};
|
|
23394
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
23395
|
-
__setModuleDefault(result, mod);
|
|
23396
|
-
return result;
|
|
23397
|
-
}
|
|
23398
|
-
|
|
23399
|
-
function __importDefault(mod) {
|
|
23400
|
-
return (mod && mod.__esModule) ? mod : { default: mod };
|
|
23401
|
-
}
|
|
23402
|
-
|
|
23403
|
-
function __classPrivateFieldGet(receiver, state, kind, f) {
|
|
23404
|
-
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
23405
|
-
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
23406
|
-
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
23407
|
-
}
|
|
23408
|
-
|
|
23409
|
-
function __classPrivateFieldSet(receiver, state, value, kind, f) {
|
|
23410
|
-
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
23411
|
-
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
|
23412
|
-
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
23413
|
-
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
23414
|
-
}
|
|
23415
|
-
|
|
23416
|
-
function __classPrivateFieldIn(state, receiver) {
|
|
23417
|
-
if (receiver === null || (typeof receiver !== "object" && typeof receiver !== "function")) throw new TypeError("Cannot use 'in' operator on non-object");
|
|
23418
|
-
return typeof state === "function" ? receiver === state : state.has(receiver);
|
|
23419
|
-
}
|
|
23420
|
-
|
|
23421
|
-
|
|
23422
|
-
/***/ }),
|
|
23423
|
-
|
|
23424
|
-
/***/ "../../node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/index.js":
|
|
23425
|
-
/*!**********************************************************************************************************!*\
|
|
23426
|
-
!*** /root/amplify-js/node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/index.js ***!
|
|
23427
|
-
\**********************************************************************************************************/
|
|
23428
|
-
/*! exports provided: v1, v3, v4, v5, NIL, version, validate, stringify, parse */
|
|
23146
|
+
/***/ "../../node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/index.js":
|
|
23147
|
+
/*!**********************************************************************************************************!*\
|
|
23148
|
+
!*** /root/amplify-js/node_modules/@aws-sdk/client-location/node_modules/uuid/dist/esm-browser/index.js ***!
|
|
23149
|
+
\**********************************************************************************************************/
|
|
23150
|
+
/*! exports provided: v1, v3, v4, v5, NIL, version, validate, stringify, parse */
|
|
23429
23151
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
23430
23152
|
|
|
23431
23153
|
"use strict";
|
|
@@ -24281,7 +24003,7 @@ module.exports = JSON.parse("{\"name\":\"@aws-sdk/client-location\",\"descriptio
|
|
|
24281
24003
|
"use strict";
|
|
24282
24004
|
__webpack_require__.r(__webpack_exports__);
|
|
24283
24005
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "locateWindow", function() { return locateWindow; });
|
|
24284
|
-
|
|
24006
|
+
var fallbackWindow = {};
|
|
24285
24007
|
function locateWindow() {
|
|
24286
24008
|
if (typeof window !== "undefined") {
|
|
24287
24009
|
return window;
|
|
@@ -27990,294 +27712,398 @@ module.exports = QuickLRU;
|
|
|
27990
27712
|
|
|
27991
27713
|
/***/ }),
|
|
27992
27714
|
|
|
27993
|
-
/***/ "../../node_modules/
|
|
27994
|
-
|
|
27995
|
-
!***
|
|
27996
|
-
|
|
27997
|
-
/*!
|
|
27998
|
-
/***/ (function(module, exports) {
|
|
27999
|
-
|
|
28000
|
-
var g;
|
|
28001
|
-
|
|
28002
|
-
// This works in non-strict mode
|
|
28003
|
-
g = (function() {
|
|
28004
|
-
return this;
|
|
28005
|
-
})();
|
|
28006
|
-
|
|
28007
|
-
try {
|
|
28008
|
-
// This works if eval is allowed (see CSP)
|
|
28009
|
-
g = g || new Function("return this")();
|
|
28010
|
-
} catch (e) {
|
|
28011
|
-
// This works if the window reference is available
|
|
28012
|
-
if (typeof window === "object") g = window;
|
|
28013
|
-
}
|
|
28014
|
-
|
|
28015
|
-
// g can still be undefined, but nothing to do about it...
|
|
28016
|
-
// We return undefined, instead of nothing here, so it's
|
|
28017
|
-
// easier to handle this case. if(!global) { ...}
|
|
28018
|
-
|
|
28019
|
-
module.exports = g;
|
|
28020
|
-
|
|
28021
|
-
|
|
28022
|
-
/***/ }),
|
|
28023
|
-
|
|
28024
|
-
/***/ "./lib-esm/Geo.js":
|
|
28025
|
-
/*!************************!*\
|
|
28026
|
-
!*** ./lib-esm/Geo.js ***!
|
|
28027
|
-
\************************/
|
|
28028
|
-
/*! exports provided: GeoClass, Geo */
|
|
27715
|
+
/***/ "../../node_modules/tslib/tslib.es6.js":
|
|
27716
|
+
/*!********************************************************!*\
|
|
27717
|
+
!*** /root/amplify-js/node_modules/tslib/tslib.es6.js ***!
|
|
27718
|
+
\********************************************************/
|
|
27719
|
+
/*! exports provided: __extends, __assign, __rest, __decorate, __param, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn */
|
|
28029
27720
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
28030
27721
|
|
|
28031
27722
|
"use strict";
|
|
28032
27723
|
__webpack_require__.r(__webpack_exports__);
|
|
28033
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
28034
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
28035
|
-
/* harmony
|
|
28036
|
-
/* harmony
|
|
28037
|
-
/* harmony
|
|
28038
|
-
/* harmony
|
|
28039
|
-
|
|
28040
|
-
|
|
28041
|
-
|
|
28042
|
-
|
|
28043
|
-
|
|
28044
|
-
|
|
28045
|
-
|
|
28046
|
-
|
|
28047
|
-
|
|
28048
|
-
|
|
28049
|
-
|
|
28050
|
-
|
|
28051
|
-
|
|
28052
|
-
|
|
28053
|
-
|
|
28054
|
-
|
|
28055
|
-
|
|
28056
|
-
|
|
28057
|
-
|
|
28058
|
-
|
|
28059
|
-
|
|
28060
|
-
|
|
28061
|
-
|
|
28062
|
-
|
|
28063
|
-
|
|
28064
|
-
|
|
28065
|
-
|
|
28066
|
-
|
|
28067
|
-
|
|
28068
|
-
|
|
28069
|
-
|
|
28070
|
-
|
|
28071
|
-
|
|
28072
|
-
|
|
28073
|
-
|
|
28074
|
-
|
|
28075
|
-
|
|
28076
|
-
|
|
28077
|
-
|
|
28078
|
-
|
|
28079
|
-
|
|
28080
|
-
|
|
28081
|
-
|
|
28082
|
-
|
|
28083
|
-
|
|
28084
|
-
|
|
28085
|
-
|
|
28086
|
-
|
|
28087
|
-
|
|
28088
|
-
|
|
28089
|
-
|
|
28090
|
-
|
|
28091
|
-
|
|
28092
|
-
|
|
28093
|
-
|
|
28094
|
-
|
|
28095
|
-
|
|
28096
|
-
}
|
|
28097
|
-
|
|
28098
|
-
|
|
28099
|
-
|
|
28100
|
-
|
|
28101
|
-
|
|
28102
|
-
|
|
28103
|
-
|
|
28104
|
-
|
|
28105
|
-
|
|
28106
|
-
|
|
28107
|
-
|
|
28108
|
-
|
|
28109
|
-
|
|
28110
|
-
|
|
28111
|
-
|
|
28112
|
-
|
|
28113
|
-
|
|
28114
|
-
|
|
28115
|
-
|
|
28116
|
-
|
|
28117
|
-
|
|
28118
|
-
|
|
28119
|
-
|
|
28120
|
-
|
|
28121
|
-
|
|
28122
|
-
|
|
28123
|
-
|
|
28124
|
-
|
|
28125
|
-
|
|
28126
|
-
|
|
28127
|
-
|
|
28128
|
-
|
|
28129
|
-
|
|
28130
|
-
|
|
28131
|
-
|
|
28132
|
-
|
|
28133
|
-
|
|
28134
|
-
|
|
28135
|
-
|
|
28136
|
-
|
|
28137
|
-
|
|
28138
|
-
|
|
28139
|
-
|
|
28140
|
-
|
|
28141
|
-
|
|
28142
|
-
|
|
28143
|
-
|
|
28144
|
-
if (op[0]
|
|
28145
|
-
|
|
28146
|
-
|
|
28147
|
-
|
|
28148
|
-
|
|
28149
|
-
|
|
28150
|
-
|
|
28151
|
-
|
|
28152
|
-
|
|
28153
|
-
|
|
28154
|
-
|
|
28155
|
-
|
|
28156
|
-
|
|
28157
|
-
|
|
28158
|
-
|
|
28159
|
-
|
|
28160
|
-
|
|
28161
|
-
|
|
28162
|
-
|
|
28163
|
-
|
|
28164
|
-
|
|
28165
|
-
|
|
28166
|
-
|
|
28167
|
-
|
|
28168
|
-
|
|
28169
|
-
|
|
28170
|
-
|
|
28171
|
-
|
|
28172
|
-
|
|
28173
|
-
|
|
28174
|
-
|
|
28175
|
-
|
|
28176
|
-
|
|
28177
|
-
|
|
28178
|
-
|
|
28179
|
-
|
|
28180
|
-
|
|
28181
|
-
|
|
28182
|
-
var
|
|
28183
|
-
|
|
28184
|
-
|
|
28185
|
-
|
|
28186
|
-
|
|
28187
|
-
|
|
28188
|
-
|
|
28189
|
-
|
|
28190
|
-
|
|
28191
|
-
|
|
28192
|
-
|
|
28193
|
-
|
|
28194
|
-
|
|
28195
|
-
|
|
28196
|
-
|
|
28197
|
-
|
|
28198
|
-
|
|
28199
|
-
|
|
28200
|
-
|
|
28201
|
-
|
|
28202
|
-
|
|
28203
|
-
|
|
28204
|
-
|
|
28205
|
-
|
|
28206
|
-
|
|
28207
|
-
|
|
28208
|
-
|
|
28209
|
-
|
|
28210
|
-
|
|
28211
|
-
|
|
28212
|
-
|
|
28213
|
-
|
|
28214
|
-
|
|
28215
|
-
|
|
28216
|
-
|
|
28217
|
-
|
|
28218
|
-
|
|
28219
|
-
|
|
28220
|
-
|
|
28221
|
-
|
|
28222
|
-
|
|
28223
|
-
|
|
28224
|
-
|
|
28225
|
-
|
|
28226
|
-
|
|
28227
|
-
|
|
28228
|
-
|
|
28229
|
-
|
|
28230
|
-
|
|
28231
|
-
|
|
28232
|
-
|
|
28233
|
-
|
|
28234
|
-
|
|
28235
|
-
|
|
28236
|
-
|
|
28237
|
-
|
|
28238
|
-
|
|
28239
|
-
|
|
28240
|
-
|
|
28241
|
-
|
|
28242
|
-
|
|
28243
|
-
return
|
|
28244
|
-
|
|
28245
|
-
|
|
28246
|
-
|
|
28247
|
-
|
|
28248
|
-
|
|
28249
|
-
|
|
28250
|
-
|
|
28251
|
-
|
|
28252
|
-
|
|
28253
|
-
|
|
28254
|
-
|
|
28255
|
-
|
|
28256
|
-
|
|
28257
|
-
|
|
28258
|
-
|
|
28259
|
-
|
|
28260
|
-
|
|
28261
|
-
|
|
28262
|
-
|
|
28263
|
-
|
|
28264
|
-
|
|
28265
|
-
|
|
28266
|
-
|
|
28267
|
-
|
|
28268
|
-
|
|
28269
|
-
|
|
28270
|
-
|
|
28271
|
-
|
|
28272
|
-
|
|
28273
|
-
|
|
28274
|
-
|
|
28275
|
-
|
|
27724
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__extends", function() { return __extends; });
|
|
27725
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__assign", function() { return __assign; });
|
|
27726
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__rest", function() { return __rest; });
|
|
27727
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__decorate", function() { return __decorate; });
|
|
27728
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__param", function() { return __param; });
|
|
27729
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__metadata", function() { return __metadata; });
|
|
27730
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__awaiter", function() { return __awaiter; });
|
|
27731
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__generator", function() { return __generator; });
|
|
27732
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__createBinding", function() { return __createBinding; });
|
|
27733
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__exportStar", function() { return __exportStar; });
|
|
27734
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__values", function() { return __values; });
|
|
27735
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__read", function() { return __read; });
|
|
27736
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spread", function() { return __spread; });
|
|
27737
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spreadArrays", function() { return __spreadArrays; });
|
|
27738
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spreadArray", function() { return __spreadArray; });
|
|
27739
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__await", function() { return __await; });
|
|
27740
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncGenerator", function() { return __asyncGenerator; });
|
|
27741
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncDelegator", function() { return __asyncDelegator; });
|
|
27742
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncValues", function() { return __asyncValues; });
|
|
27743
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__makeTemplateObject", function() { return __makeTemplateObject; });
|
|
27744
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__importStar", function() { return __importStar; });
|
|
27745
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__importDefault", function() { return __importDefault; });
|
|
27746
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__classPrivateFieldGet", function() { return __classPrivateFieldGet; });
|
|
27747
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__classPrivateFieldSet", function() { return __classPrivateFieldSet; });
|
|
27748
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__classPrivateFieldIn", function() { return __classPrivateFieldIn; });
|
|
27749
|
+
/******************************************************************************
|
|
27750
|
+
Copyright (c) Microsoft Corporation.
|
|
27751
|
+
|
|
27752
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
27753
|
+
purpose with or without fee is hereby granted.
|
|
27754
|
+
|
|
27755
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
27756
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
27757
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
27758
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
27759
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
27760
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
27761
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
27762
|
+
***************************************************************************** */
|
|
27763
|
+
/* global Reflect, Promise */
|
|
27764
|
+
|
|
27765
|
+
var extendStatics = function(d, b) {
|
|
27766
|
+
extendStatics = Object.setPrototypeOf ||
|
|
27767
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
27768
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
27769
|
+
return extendStatics(d, b);
|
|
27770
|
+
};
|
|
27771
|
+
|
|
27772
|
+
function __extends(d, b) {
|
|
27773
|
+
if (typeof b !== "function" && b !== null)
|
|
27774
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
27775
|
+
extendStatics(d, b);
|
|
27776
|
+
function __() { this.constructor = d; }
|
|
27777
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
27778
|
+
}
|
|
27779
|
+
|
|
27780
|
+
var __assign = function() {
|
|
27781
|
+
__assign = Object.assign || function __assign(t) {
|
|
27782
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
27783
|
+
s = arguments[i];
|
|
27784
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
27785
|
+
}
|
|
27786
|
+
return t;
|
|
27787
|
+
}
|
|
27788
|
+
return __assign.apply(this, arguments);
|
|
27789
|
+
}
|
|
27790
|
+
|
|
27791
|
+
function __rest(s, e) {
|
|
27792
|
+
var t = {};
|
|
27793
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
27794
|
+
t[p] = s[p];
|
|
27795
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
27796
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
27797
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
27798
|
+
t[p[i]] = s[p[i]];
|
|
27799
|
+
}
|
|
27800
|
+
return t;
|
|
27801
|
+
}
|
|
27802
|
+
|
|
27803
|
+
function __decorate(decorators, target, key, desc) {
|
|
27804
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
27805
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
27806
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
27807
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
27808
|
+
}
|
|
27809
|
+
|
|
27810
|
+
function __param(paramIndex, decorator) {
|
|
27811
|
+
return function (target, key) { decorator(target, key, paramIndex); }
|
|
27812
|
+
}
|
|
27813
|
+
|
|
27814
|
+
function __metadata(metadataKey, metadataValue) {
|
|
27815
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
|
|
27816
|
+
}
|
|
27817
|
+
|
|
27818
|
+
function __awaiter(thisArg, _arguments, P, generator) {
|
|
27819
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
27820
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
27821
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
27822
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
27823
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
27824
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
27825
|
+
});
|
|
27826
|
+
}
|
|
27827
|
+
|
|
27828
|
+
function __generator(thisArg, body) {
|
|
27829
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
27830
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
27831
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
27832
|
+
function step(op) {
|
|
27833
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
27834
|
+
while (_) try {
|
|
27835
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
27836
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
27837
|
+
switch (op[0]) {
|
|
27838
|
+
case 0: case 1: t = op; break;
|
|
27839
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
27840
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
27841
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
27842
|
+
default:
|
|
27843
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
27844
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
27845
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
27846
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
27847
|
+
if (t[2]) _.ops.pop();
|
|
27848
|
+
_.trys.pop(); continue;
|
|
27849
|
+
}
|
|
27850
|
+
op = body.call(thisArg, _);
|
|
27851
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
27852
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
27853
|
+
}
|
|
27854
|
+
}
|
|
27855
|
+
|
|
27856
|
+
var __createBinding = Object.create ? (function(o, m, k, k2) {
|
|
27857
|
+
if (k2 === undefined) k2 = k;
|
|
27858
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
27859
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
27860
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
27861
|
+
}
|
|
27862
|
+
Object.defineProperty(o, k2, desc);
|
|
27863
|
+
}) : (function(o, m, k, k2) {
|
|
27864
|
+
if (k2 === undefined) k2 = k;
|
|
27865
|
+
o[k2] = m[k];
|
|
27866
|
+
});
|
|
27867
|
+
|
|
27868
|
+
function __exportStar(m, o) {
|
|
27869
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
|
|
27870
|
+
}
|
|
27871
|
+
|
|
27872
|
+
function __values(o) {
|
|
27873
|
+
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
27874
|
+
if (m) return m.call(o);
|
|
27875
|
+
if (o && typeof o.length === "number") return {
|
|
27876
|
+
next: function () {
|
|
27877
|
+
if (o && i >= o.length) o = void 0;
|
|
27878
|
+
return { value: o && o[i++], done: !o };
|
|
27879
|
+
}
|
|
27880
|
+
};
|
|
27881
|
+
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
27882
|
+
}
|
|
27883
|
+
|
|
27884
|
+
function __read(o, n) {
|
|
27885
|
+
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
|
27886
|
+
if (!m) return o;
|
|
27887
|
+
var i = m.call(o), r, ar = [], e;
|
|
27888
|
+
try {
|
|
27889
|
+
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
|
27890
|
+
}
|
|
27891
|
+
catch (error) { e = { error: error }; }
|
|
27892
|
+
finally {
|
|
27893
|
+
try {
|
|
27894
|
+
if (r && !r.done && (m = i["return"])) m.call(i);
|
|
27895
|
+
}
|
|
27896
|
+
finally { if (e) throw e.error; }
|
|
27897
|
+
}
|
|
27898
|
+
return ar;
|
|
27899
|
+
}
|
|
27900
|
+
|
|
27901
|
+
/** @deprecated */
|
|
27902
|
+
function __spread() {
|
|
27903
|
+
for (var ar = [], i = 0; i < arguments.length; i++)
|
|
27904
|
+
ar = ar.concat(__read(arguments[i]));
|
|
27905
|
+
return ar;
|
|
27906
|
+
}
|
|
27907
|
+
|
|
27908
|
+
/** @deprecated */
|
|
27909
|
+
function __spreadArrays() {
|
|
27910
|
+
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
|
27911
|
+
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
|
27912
|
+
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
|
27913
|
+
r[k] = a[j];
|
|
27914
|
+
return r;
|
|
27915
|
+
}
|
|
27916
|
+
|
|
27917
|
+
function __spreadArray(to, from, pack) {
|
|
27918
|
+
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
27919
|
+
if (ar || !(i in from)) {
|
|
27920
|
+
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
27921
|
+
ar[i] = from[i];
|
|
27922
|
+
}
|
|
27923
|
+
}
|
|
27924
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
27925
|
+
}
|
|
27926
|
+
|
|
27927
|
+
function __await(v) {
|
|
27928
|
+
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
|
27929
|
+
}
|
|
27930
|
+
|
|
27931
|
+
function __asyncGenerator(thisArg, _arguments, generator) {
|
|
27932
|
+
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
|
27933
|
+
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
|
27934
|
+
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
|
27935
|
+
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
|
27936
|
+
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
|
|
27937
|
+
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
|
27938
|
+
function fulfill(value) { resume("next", value); }
|
|
27939
|
+
function reject(value) { resume("throw", value); }
|
|
27940
|
+
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
|
|
27941
|
+
}
|
|
27942
|
+
|
|
27943
|
+
function __asyncDelegator(o) {
|
|
27944
|
+
var i, p;
|
|
27945
|
+
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
|
27946
|
+
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
|
27947
|
+
}
|
|
27948
|
+
|
|
27949
|
+
function __asyncValues(o) {
|
|
27950
|
+
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
|
27951
|
+
var m = o[Symbol.asyncIterator], i;
|
|
27952
|
+
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
|
27953
|
+
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
|
27954
|
+
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
|
27955
|
+
}
|
|
27956
|
+
|
|
27957
|
+
function __makeTemplateObject(cooked, raw) {
|
|
27958
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
27959
|
+
return cooked;
|
|
27960
|
+
};
|
|
27961
|
+
|
|
27962
|
+
var __setModuleDefault = Object.create ? (function(o, v) {
|
|
27963
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
27964
|
+
}) : function(o, v) {
|
|
27965
|
+
o["default"] = v;
|
|
27966
|
+
};
|
|
27967
|
+
|
|
27968
|
+
function __importStar(mod) {
|
|
27969
|
+
if (mod && mod.__esModule) return mod;
|
|
27970
|
+
var result = {};
|
|
27971
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
27972
|
+
__setModuleDefault(result, mod);
|
|
27973
|
+
return result;
|
|
27974
|
+
}
|
|
27975
|
+
|
|
27976
|
+
function __importDefault(mod) {
|
|
27977
|
+
return (mod && mod.__esModule) ? mod : { default: mod };
|
|
27978
|
+
}
|
|
27979
|
+
|
|
27980
|
+
function __classPrivateFieldGet(receiver, state, kind, f) {
|
|
27981
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
27982
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
27983
|
+
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
27984
|
+
}
|
|
27985
|
+
|
|
27986
|
+
function __classPrivateFieldSet(receiver, state, value, kind, f) {
|
|
27987
|
+
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
27988
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
|
27989
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
27990
|
+
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
27991
|
+
}
|
|
27992
|
+
|
|
27993
|
+
function __classPrivateFieldIn(state, receiver) {
|
|
27994
|
+
if (receiver === null || (typeof receiver !== "object" && typeof receiver !== "function")) throw new TypeError("Cannot use 'in' operator on non-object");
|
|
27995
|
+
return typeof state === "function" ? receiver === state : state.has(receiver);
|
|
27996
|
+
}
|
|
27997
|
+
|
|
27998
|
+
|
|
27999
|
+
/***/ }),
|
|
28000
|
+
|
|
28001
|
+
/***/ "../../node_modules/webpack/buildin/global.js":
|
|
28002
|
+
/*!***********************************!*\
|
|
28003
|
+
!*** (webpack)/buildin/global.js ***!
|
|
28004
|
+
\***********************************/
|
|
28005
|
+
/*! no static exports found */
|
|
28006
|
+
/***/ (function(module, exports) {
|
|
28007
|
+
|
|
28008
|
+
var g;
|
|
28009
|
+
|
|
28010
|
+
// This works in non-strict mode
|
|
28011
|
+
g = (function() {
|
|
28012
|
+
return this;
|
|
28013
|
+
})();
|
|
28014
|
+
|
|
28015
|
+
try {
|
|
28016
|
+
// This works if eval is allowed (see CSP)
|
|
28017
|
+
g = g || new Function("return this")();
|
|
28018
|
+
} catch (e) {
|
|
28019
|
+
// This works if the window reference is available
|
|
28020
|
+
if (typeof window === "object") g = window;
|
|
28021
|
+
}
|
|
28022
|
+
|
|
28023
|
+
// g can still be undefined, but nothing to do about it...
|
|
28024
|
+
// We return undefined, instead of nothing here, so it's
|
|
28025
|
+
// easier to handle this case. if(!global) { ...}
|
|
28026
|
+
|
|
28027
|
+
module.exports = g;
|
|
28028
|
+
|
|
28029
|
+
|
|
28030
|
+
/***/ }),
|
|
28031
|
+
|
|
28032
|
+
/***/ "./lib-esm/Geo.js":
|
|
28033
|
+
/*!************************!*\
|
|
28034
|
+
!*** ./lib-esm/Geo.js ***!
|
|
28035
|
+
\************************/
|
|
28036
|
+
/*! exports provided: GeoClass, Geo */
|
|
28037
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
28038
|
+
|
|
28039
|
+
"use strict";
|
|
28040
|
+
__webpack_require__.r(__webpack_exports__);
|
|
28041
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GeoClass", function() { return GeoClass; });
|
|
28042
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Geo", function() { return Geo; });
|
|
28043
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
28044
|
+
/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/core */ "@aws-amplify/core");
|
|
28045
|
+
/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__);
|
|
28046
|
+
/* harmony import */ var _Providers_AmazonLocationServiceProvider__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Providers/AmazonLocationServiceProvider */ "./lib-esm/Providers/AmazonLocationServiceProvider.js");
|
|
28047
|
+
/* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./util */ "./lib-esm/util.js");
|
|
28048
|
+
|
|
28049
|
+
/*
|
|
28050
|
+
* Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
28051
|
+
*
|
|
28052
|
+
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
|
|
28053
|
+
* the License. A copy of the License is located at
|
|
28054
|
+
*
|
|
28055
|
+
* http://aws.amazon.com/apache2.0/
|
|
28056
|
+
*
|
|
28057
|
+
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
28058
|
+
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
|
|
28059
|
+
* and limitations under the License.
|
|
28060
|
+
*/
|
|
28061
|
+
|
|
28062
|
+
|
|
28063
|
+
|
|
28064
|
+
var logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__["ConsoleLogger"]('Geo');
|
|
28065
|
+
var DEFAULT_PROVIDER = 'AmazonLocationService';
|
|
28066
|
+
var GeoClass = /** @class */function () {
|
|
28067
|
+
function GeoClass() {
|
|
28068
|
+
this._config = {};
|
|
28069
|
+
this._pluggables = [];
|
|
28070
|
+
logger.debug('Geo Options', this._config);
|
|
28071
|
+
}
|
|
28072
|
+
/**
|
|
28073
|
+
* get the name of the module category
|
|
28074
|
+
* @returns {string} name of the module category
|
|
28075
|
+
*/
|
|
28076
|
+
GeoClass.prototype.getModuleName = function () {
|
|
28077
|
+
return GeoClass.MODULE;
|
|
28078
|
+
};
|
|
28079
|
+
/**
|
|
28080
|
+
* add plugin into Geo category
|
|
28081
|
+
* @param {Object} pluggable - an instance of the plugin
|
|
28082
|
+
*/
|
|
28083
|
+
GeoClass.prototype.addPluggable = function (pluggable) {
|
|
28084
|
+
if (pluggable && pluggable.getCategory() === 'Geo') {
|
|
28085
|
+
this._pluggables.push(pluggable);
|
|
28086
|
+
var config = pluggable.configure(this._config[pluggable.getProviderName()]);
|
|
28087
|
+
return config;
|
|
28088
|
+
}
|
|
28089
|
+
};
|
|
28090
|
+
/**
|
|
28091
|
+
* Get the plugin object
|
|
28092
|
+
* @param providerName - the name of the plugin
|
|
28093
|
+
*/
|
|
28094
|
+
GeoClass.prototype.getPluggable = function (providerName) {
|
|
28095
|
+
var pluggable = this._pluggables.find(function (pluggable) {
|
|
28096
|
+
return pluggable.getProviderName() === providerName;
|
|
28097
|
+
});
|
|
28098
|
+
if (pluggable === undefined) {
|
|
28099
|
+
logger.debug('No plugin found with providerName', providerName);
|
|
28100
|
+
throw new Error('No plugin found in Geo for the provider');
|
|
28101
|
+
} else return pluggable;
|
|
28102
|
+
};
|
|
28103
|
+
/**
|
|
28276
28104
|
* Remove the plugin object
|
|
28277
28105
|
* @param providerName - the name of the plugin
|
|
28278
28106
|
*/
|
|
28279
|
-
|
|
28280
|
-
|
|
28281
28107
|
GeoClass.prototype.removePluggable = function (providerName) {
|
|
28282
28108
|
this._pluggables = this._pluggables.filter(function (pluggable) {
|
|
28283
28109
|
return pluggable.getProviderName() !== providerName;
|
|
@@ -28289,24 +28115,18 @@ function () {
|
|
|
28289
28115
|
* @param {Object} config - Configuration object for Geo
|
|
28290
28116
|
* @return {Object} - Current configuration
|
|
28291
28117
|
*/
|
|
28292
|
-
|
|
28293
|
-
|
|
28294
28118
|
GeoClass.prototype.configure = function (config) {
|
|
28295
28119
|
var _this = this;
|
|
28296
|
-
|
|
28297
28120
|
logger.debug('configure Geo');
|
|
28298
28121
|
if (!config) return this._config;
|
|
28299
|
-
var amplifyConfig = Object(
|
|
28122
|
+
var amplifyConfig = Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__["parseMobileHubConfig"])(config);
|
|
28300
28123
|
this._config = Object.assign({}, this._config, amplifyConfig.Geo, config);
|
|
28301
|
-
|
|
28302
28124
|
this._pluggables.forEach(function (pluggable) {
|
|
28303
28125
|
pluggable.configure(_this._config[pluggable.getProviderName()]);
|
|
28304
28126
|
});
|
|
28305
|
-
|
|
28306
28127
|
if (this._pluggables.length === 0) {
|
|
28307
|
-
this.addPluggable(new
|
|
28128
|
+
this.addPluggable(new _Providers_AmazonLocationServiceProvider__WEBPACK_IMPORTED_MODULE_2__["AmazonLocationServiceProvider"]());
|
|
28308
28129
|
}
|
|
28309
|
-
|
|
28310
28130
|
return this._config;
|
|
28311
28131
|
};
|
|
28312
28132
|
/**
|
|
@@ -28314,13 +28134,10 @@ function () {
|
|
|
28314
28134
|
* @param {string} provider
|
|
28315
28135
|
* @returns - Array of available map resources
|
|
28316
28136
|
*/
|
|
28317
|
-
|
|
28318
|
-
|
|
28319
28137
|
GeoClass.prototype.getAvailableMaps = function (provider) {
|
|
28320
28138
|
if (provider === void 0) {
|
|
28321
28139
|
provider = DEFAULT_PROVIDER;
|
|
28322
28140
|
}
|
|
28323
|
-
|
|
28324
28141
|
var prov = this.getPluggable(provider);
|
|
28325
28142
|
return prov.getAvailableMaps();
|
|
28326
28143
|
};
|
|
@@ -28329,13 +28146,10 @@ function () {
|
|
|
28329
28146
|
* @param {string} provider
|
|
28330
28147
|
* @returns - Map resource set as the default in amplify config
|
|
28331
28148
|
*/
|
|
28332
|
-
|
|
28333
|
-
|
|
28334
28149
|
GeoClass.prototype.getDefaultMap = function (provider) {
|
|
28335
28150
|
if (provider === void 0) {
|
|
28336
28151
|
provider = DEFAULT_PROVIDER;
|
|
28337
28152
|
}
|
|
28338
|
-
|
|
28339
28153
|
var prov = this.getPluggable(provider);
|
|
28340
28154
|
return prov.getDefaultMap();
|
|
28341
28155
|
};
|
|
@@ -28345,40 +28159,26 @@ function () {
|
|
|
28345
28159
|
* @param {SearchByTextOptions} options? - Optional parameters to the search
|
|
28346
28160
|
* @returns {Promise<Place[]>} - Promise resolves to a list of Places that match search parameters
|
|
28347
28161
|
*/
|
|
28348
|
-
|
|
28349
|
-
|
|
28350
28162
|
GeoClass.prototype.searchByText = function (text, options) {
|
|
28351
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
28163
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__awaiter"])(this, void 0, void 0, function () {
|
|
28352
28164
|
var _a, providerName, prov, error_1;
|
|
28353
|
-
|
|
28354
|
-
return __generator(this, function (_b) {
|
|
28165
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__generator"])(this, function (_b) {
|
|
28355
28166
|
switch (_b.label) {
|
|
28356
28167
|
case 0:
|
|
28357
28168
|
_a = (options || {}).providerName, providerName = _a === void 0 ? DEFAULT_PROVIDER : _a;
|
|
28358
28169
|
prov = this.getPluggable(providerName);
|
|
28359
28170
|
_b.label = 1;
|
|
28360
|
-
|
|
28361
28171
|
case 1:
|
|
28362
28172
|
_b.trys.push([1, 3,, 4]);
|
|
28363
|
-
|
|
28364
|
-
return [4
|
|
28365
|
-
/*yield*/
|
|
28366
|
-
, prov.searchByText(text, options)];
|
|
28367
|
-
|
|
28173
|
+
return [4 /*yield*/, prov.searchByText(text, options)];
|
|
28368
28174
|
case 2:
|
|
28369
|
-
return [2
|
|
28370
|
-
/*return*/
|
|
28371
|
-
, _b.sent()];
|
|
28372
|
-
|
|
28175
|
+
return [2 /*return*/, _b.sent()];
|
|
28373
28176
|
case 3:
|
|
28374
28177
|
error_1 = _b.sent();
|
|
28375
28178
|
logger.debug(error_1);
|
|
28376
28179
|
throw error_1;
|
|
28377
|
-
|
|
28378
28180
|
case 4:
|
|
28379
|
-
return [2
|
|
28380
|
-
/*return*/
|
|
28381
|
-
];
|
|
28181
|
+
return [2 /*return*/];
|
|
28382
28182
|
}
|
|
28383
28183
|
});
|
|
28384
28184
|
});
|
|
@@ -28389,42 +28189,28 @@ function () {
|
|
|
28389
28189
|
* @param options - Options parameters for the search
|
|
28390
28190
|
* @returns {Promise<Place>} - Promise that resolves to a place matching search coordinates
|
|
28391
28191
|
*/
|
|
28392
|
-
|
|
28393
|
-
|
|
28394
28192
|
GeoClass.prototype.searchByCoordinates = function (coordinates, options) {
|
|
28395
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
28193
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__awaiter"])(this, void 0, void 0, function () {
|
|
28396
28194
|
var _a, providerName, prov, _b, lng, lat, error_2;
|
|
28397
|
-
|
|
28398
|
-
return __generator(this, function (_c) {
|
|
28195
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__generator"])(this, function (_c) {
|
|
28399
28196
|
switch (_c.label) {
|
|
28400
28197
|
case 0:
|
|
28401
28198
|
_a = (options || {}).providerName, providerName = _a === void 0 ? DEFAULT_PROVIDER : _a;
|
|
28402
28199
|
prov = this.getPluggable(providerName);
|
|
28403
|
-
_b = __read(coordinates, 2), lng = _b[0], lat = _b[1];
|
|
28200
|
+
_b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__read"])(coordinates, 2), lng = _b[0], lat = _b[1];
|
|
28404
28201
|
_c.label = 1;
|
|
28405
|
-
|
|
28406
28202
|
case 1:
|
|
28407
28203
|
_c.trys.push([1, 3,, 4]);
|
|
28408
|
-
|
|
28409
|
-
|
|
28410
|
-
return [4
|
|
28411
|
-
/*yield*/
|
|
28412
|
-
, prov.searchByCoordinates(coordinates, options)];
|
|
28413
|
-
|
|
28204
|
+
Object(_util__WEBPACK_IMPORTED_MODULE_3__["validateCoordinates"])(lng, lat);
|
|
28205
|
+
return [4 /*yield*/, prov.searchByCoordinates(coordinates, options)];
|
|
28414
28206
|
case 2:
|
|
28415
|
-
return [2
|
|
28416
|
-
/*return*/
|
|
28417
|
-
, _c.sent()];
|
|
28418
|
-
|
|
28207
|
+
return [2 /*return*/, _c.sent()];
|
|
28419
28208
|
case 3:
|
|
28420
28209
|
error_2 = _c.sent();
|
|
28421
28210
|
logger.debug(error_2);
|
|
28422
28211
|
throw error_2;
|
|
28423
|
-
|
|
28424
28212
|
case 4:
|
|
28425
|
-
return [2
|
|
28426
|
-
/*return*/
|
|
28427
|
-
];
|
|
28213
|
+
return [2 /*return*/];
|
|
28428
28214
|
}
|
|
28429
28215
|
});
|
|
28430
28216
|
});
|
|
@@ -28437,47 +28223,31 @@ function () {
|
|
|
28437
28223
|
* successes: list of geofences successfully created
|
|
28438
28224
|
* errors: list of geofences that failed to create
|
|
28439
28225
|
*/
|
|
28440
|
-
|
|
28441
|
-
|
|
28442
28226
|
GeoClass.prototype.saveGeofences = function (geofences, options) {
|
|
28443
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
28227
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__awaiter"])(this, void 0, void 0, function () {
|
|
28444
28228
|
var _a, providerName, prov, geofenceInputArray, error_3;
|
|
28445
|
-
|
|
28446
|
-
return __generator(this, function (_b) {
|
|
28229
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__generator"])(this, function (_b) {
|
|
28447
28230
|
switch (_b.label) {
|
|
28448
28231
|
case 0:
|
|
28449
28232
|
_a = (options || {}).providerName, providerName = _a === void 0 ? DEFAULT_PROVIDER : _a;
|
|
28450
28233
|
prov = this.getPluggable(providerName);
|
|
28451
|
-
|
|
28452
28234
|
if (!Array.isArray(geofences)) {
|
|
28453
28235
|
geofenceInputArray = [geofences];
|
|
28454
28236
|
} else {
|
|
28455
28237
|
geofenceInputArray = geofences;
|
|
28456
28238
|
}
|
|
28457
|
-
|
|
28458
28239
|
_b.label = 1;
|
|
28459
|
-
|
|
28460
28240
|
case 1:
|
|
28461
28241
|
_b.trys.push([1, 3,, 4]);
|
|
28462
|
-
|
|
28463
|
-
return [4
|
|
28464
|
-
/*yield*/
|
|
28465
|
-
, prov.saveGeofences(geofenceInputArray, options)];
|
|
28466
|
-
|
|
28242
|
+
return [4 /*yield*/, prov.saveGeofences(geofenceInputArray, options)];
|
|
28467
28243
|
case 2:
|
|
28468
|
-
return [2
|
|
28469
|
-
/*return*/
|
|
28470
|
-
, _b.sent()];
|
|
28471
|
-
|
|
28244
|
+
return [2 /*return*/, _b.sent()];
|
|
28472
28245
|
case 3:
|
|
28473
28246
|
error_3 = _b.sent();
|
|
28474
28247
|
logger.debug(error_3);
|
|
28475
28248
|
throw error_3;
|
|
28476
|
-
|
|
28477
28249
|
case 4:
|
|
28478
|
-
return [2
|
|
28479
|
-
/*return*/
|
|
28480
|
-
];
|
|
28250
|
+
return [2 /*return*/];
|
|
28481
28251
|
}
|
|
28482
28252
|
});
|
|
28483
28253
|
});
|
|
@@ -28488,40 +28258,26 @@ function () {
|
|
|
28488
28258
|
* @param options?: GeofenceOptions - Optional parameters for getting a geofence
|
|
28489
28259
|
* @returns Promise<Geofence> - Promise that resolves to a geofence object
|
|
28490
28260
|
*/
|
|
28491
|
-
|
|
28492
|
-
|
|
28493
28261
|
GeoClass.prototype.getGeofence = function (geofenceId, options) {
|
|
28494
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
28262
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__awaiter"])(this, void 0, void 0, function () {
|
|
28495
28263
|
var _a, providerName, prov, error_4;
|
|
28496
|
-
|
|
28497
|
-
return __generator(this, function (_b) {
|
|
28264
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__generator"])(this, function (_b) {
|
|
28498
28265
|
switch (_b.label) {
|
|
28499
28266
|
case 0:
|
|
28500
28267
|
_a = (options || {}).providerName, providerName = _a === void 0 ? DEFAULT_PROVIDER : _a;
|
|
28501
28268
|
prov = this.getPluggable(providerName);
|
|
28502
28269
|
_b.label = 1;
|
|
28503
|
-
|
|
28504
28270
|
case 1:
|
|
28505
28271
|
_b.trys.push([1, 3,, 4]);
|
|
28506
|
-
|
|
28507
|
-
return [4
|
|
28508
|
-
/*yield*/
|
|
28509
|
-
, prov.getGeofence(geofenceId, options)];
|
|
28510
|
-
|
|
28272
|
+
return [4 /*yield*/, prov.getGeofence(geofenceId, options)];
|
|
28511
28273
|
case 2:
|
|
28512
|
-
return [2
|
|
28513
|
-
/*return*/
|
|
28514
|
-
, _b.sent()];
|
|
28515
|
-
|
|
28274
|
+
return [2 /*return*/, _b.sent()];
|
|
28516
28275
|
case 3:
|
|
28517
28276
|
error_4 = _b.sent();
|
|
28518
28277
|
logger.debug(error_4);
|
|
28519
28278
|
throw error_4;
|
|
28520
|
-
|
|
28521
28279
|
case 4:
|
|
28522
|
-
return [2
|
|
28523
|
-
/*return*/
|
|
28524
|
-
];
|
|
28280
|
+
return [2 /*return*/];
|
|
28525
28281
|
}
|
|
28526
28282
|
});
|
|
28527
28283
|
});
|
|
@@ -28533,40 +28289,26 @@ function () {
|
|
|
28533
28289
|
* entries: list of geofences - 100 geofences are listed per page
|
|
28534
28290
|
* nextToken: token for next page of geofences
|
|
28535
28291
|
*/
|
|
28536
|
-
|
|
28537
|
-
|
|
28538
28292
|
GeoClass.prototype.listGeofences = function (options) {
|
|
28539
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
28293
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__awaiter"])(this, void 0, void 0, function () {
|
|
28540
28294
|
var _a, providerName, prov, error_5;
|
|
28541
|
-
|
|
28542
|
-
return __generator(this, function (_b) {
|
|
28295
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__generator"])(this, function (_b) {
|
|
28543
28296
|
switch (_b.label) {
|
|
28544
28297
|
case 0:
|
|
28545
28298
|
_a = (options || {}).providerName, providerName = _a === void 0 ? DEFAULT_PROVIDER : _a;
|
|
28546
28299
|
prov = this.getPluggable(providerName);
|
|
28547
28300
|
_b.label = 1;
|
|
28548
|
-
|
|
28549
28301
|
case 1:
|
|
28550
28302
|
_b.trys.push([1, 3,, 4]);
|
|
28551
|
-
|
|
28552
|
-
return [4
|
|
28553
|
-
/*yield*/
|
|
28554
|
-
, prov.listGeofences(options)];
|
|
28555
|
-
|
|
28303
|
+
return [4 /*yield*/, prov.listGeofences(options)];
|
|
28556
28304
|
case 2:
|
|
28557
|
-
return [2
|
|
28558
|
-
/*return*/
|
|
28559
|
-
, _b.sent()];
|
|
28560
|
-
|
|
28305
|
+
return [2 /*return*/, _b.sent()];
|
|
28561
28306
|
case 3:
|
|
28562
28307
|
error_5 = _b.sent();
|
|
28563
28308
|
logger.debug(error_5);
|
|
28564
28309
|
throw error_5;
|
|
28565
|
-
|
|
28566
28310
|
case 4:
|
|
28567
|
-
return [2
|
|
28568
|
-
/*return*/
|
|
28569
|
-
];
|
|
28311
|
+
return [2 /*return*/];
|
|
28570
28312
|
}
|
|
28571
28313
|
});
|
|
28572
28314
|
});
|
|
@@ -28579,255 +28321,63 @@ function () {
|
|
|
28579
28321
|
* successes: list of geofences successfully deleted
|
|
28580
28322
|
* errors: list of geofences that failed to delete
|
|
28581
28323
|
*/
|
|
28582
|
-
|
|
28583
|
-
|
|
28584
28324
|
GeoClass.prototype.deleteGeofences = function (geofenceIds, options) {
|
|
28585
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
28325
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__awaiter"])(this, void 0, void 0, function () {
|
|
28586
28326
|
var _a, providerName, prov, geofenceIdsInputArray, error_6;
|
|
28587
|
-
|
|
28588
|
-
return __generator(this, function (_b) {
|
|
28327
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__generator"])(this, function (_b) {
|
|
28589
28328
|
switch (_b.label) {
|
|
28590
28329
|
case 0:
|
|
28591
28330
|
_a = (options || {}).providerName, providerName = _a === void 0 ? DEFAULT_PROVIDER : _a;
|
|
28592
28331
|
prov = this.getPluggable(providerName);
|
|
28593
|
-
|
|
28594
28332
|
if (!Array.isArray(geofenceIds)) {
|
|
28595
28333
|
geofenceIdsInputArray = [geofenceIds];
|
|
28596
28334
|
} else {
|
|
28597
28335
|
geofenceIdsInputArray = geofenceIds;
|
|
28598
|
-
}
|
|
28599
|
-
|
|
28600
|
-
_b.label = 1;
|
|
28601
|
-
|
|
28602
|
-
case 1:
|
|
28603
|
-
_b.trys.push([1, 3,, 4]);
|
|
28604
|
-
|
|
28605
|
-
return [4
|
|
28606
|
-
/*yield*/
|
|
28607
|
-
, prov.deleteGeofences(geofenceIdsInputArray, options)];
|
|
28608
|
-
|
|
28609
|
-
case 2:
|
|
28610
|
-
return [2
|
|
28611
|
-
/*return*/
|
|
28612
|
-
, _b.sent()];
|
|
28613
|
-
|
|
28614
|
-
case 3:
|
|
28615
|
-
error_6 = _b.sent();
|
|
28616
|
-
logger.debug(error_6);
|
|
28617
|
-
throw error_6;
|
|
28618
|
-
|
|
28619
|
-
case 4:
|
|
28620
|
-
return [2
|
|
28621
|
-
/*return*/
|
|
28622
|
-
];
|
|
28623
|
-
}
|
|
28624
|
-
});
|
|
28625
|
-
});
|
|
28626
|
-
};
|
|
28627
|
-
|
|
28628
|
-
GeoClass.MODULE = 'Geo';
|
|
28629
|
-
return GeoClass;
|
|
28630
|
-
}();
|
|
28631
|
-
|
|
28632
|
-
|
|
28633
|
-
var Geo = new GeoClass();
|
|
28634
|
-
_aws_amplify_core__WEBPACK_IMPORTED_MODULE_0__["Amplify"].register(Geo);
|
|
28635
|
-
|
|
28636
|
-
/***/ }),
|
|
28637
|
-
|
|
28638
|
-
/***/ "./lib-esm/Providers/AmazonLocationServiceProvider.js":
|
|
28639
|
-
/*!************************************************************!*\
|
|
28640
|
-
!*** ./lib-esm/Providers/AmazonLocationServiceProvider.js ***!
|
|
28641
|
-
\************************************************************/
|
|
28642
|
-
/*! exports provided: AmazonLocationServiceProvider */
|
|
28643
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
28644
|
-
|
|
28645
|
-
"use strict";
|
|
28646
|
-
__webpack_require__.r(__webpack_exports__);
|
|
28647
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AmazonLocationServiceProvider", function() { return AmazonLocationServiceProvider; });
|
|
28648
|
-
/* harmony import */ var camelcase_keys__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! camelcase-keys */ "../../node_modules/camelcase-keys/index.js");
|
|
28649
|
-
/* harmony import */ var camelcase_keys__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(camelcase_keys__WEBPACK_IMPORTED_MODULE_0__);
|
|
28650
|
-
/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @aws-amplify/core */ "@aws-amplify/core");
|
|
28651
|
-
/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__);
|
|
28652
|
-
/* harmony import */ var _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-sdk/client-location */ "../../node_modules/@aws-sdk/client-location/dist-es/index.js");
|
|
28653
|
-
/* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util */ "./lib-esm/util.js");
|
|
28654
|
-
var __awaiter = undefined && undefined.__awaiter || function (thisArg, _arguments, P, generator) {
|
|
28655
|
-
function adopt(value) {
|
|
28656
|
-
return value instanceof P ? value : new P(function (resolve) {
|
|
28657
|
-
resolve(value);
|
|
28658
|
-
});
|
|
28659
|
-
}
|
|
28660
|
-
|
|
28661
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
28662
|
-
function fulfilled(value) {
|
|
28663
|
-
try {
|
|
28664
|
-
step(generator.next(value));
|
|
28665
|
-
} catch (e) {
|
|
28666
|
-
reject(e);
|
|
28667
|
-
}
|
|
28668
|
-
}
|
|
28669
|
-
|
|
28670
|
-
function rejected(value) {
|
|
28671
|
-
try {
|
|
28672
|
-
step(generator["throw"](value));
|
|
28673
|
-
} catch (e) {
|
|
28674
|
-
reject(e);
|
|
28675
|
-
}
|
|
28676
|
-
}
|
|
28677
|
-
|
|
28678
|
-
function step(result) {
|
|
28679
|
-
result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected);
|
|
28680
|
-
}
|
|
28681
|
-
|
|
28682
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
28683
|
-
});
|
|
28684
|
-
};
|
|
28685
|
-
|
|
28686
|
-
var __generator = undefined && undefined.__generator || function (thisArg, body) {
|
|
28687
|
-
var _ = {
|
|
28688
|
-
label: 0,
|
|
28689
|
-
sent: function sent() {
|
|
28690
|
-
if (t[0] & 1) throw t[1];
|
|
28691
|
-
return t[1];
|
|
28692
|
-
},
|
|
28693
|
-
trys: [],
|
|
28694
|
-
ops: []
|
|
28695
|
-
},
|
|
28696
|
-
f,
|
|
28697
|
-
y,
|
|
28698
|
-
t,
|
|
28699
|
-
g;
|
|
28700
|
-
return g = {
|
|
28701
|
-
next: verb(0),
|
|
28702
|
-
"throw": verb(1),
|
|
28703
|
-
"return": verb(2)
|
|
28704
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function () {
|
|
28705
|
-
return this;
|
|
28706
|
-
}), g;
|
|
28707
|
-
|
|
28708
|
-
function verb(n) {
|
|
28709
|
-
return function (v) {
|
|
28710
|
-
return step([n, v]);
|
|
28711
|
-
};
|
|
28712
|
-
}
|
|
28713
|
-
|
|
28714
|
-
function step(op) {
|
|
28715
|
-
if (f) throw new TypeError("Generator is already executing.");
|
|
28716
|
-
|
|
28717
|
-
while (_) {
|
|
28718
|
-
try {
|
|
28719
|
-
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
28720
|
-
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
28721
|
-
|
|
28722
|
-
switch (op[0]) {
|
|
28723
|
-
case 0:
|
|
28336
|
+
}
|
|
28337
|
+
_b.label = 1;
|
|
28724
28338
|
case 1:
|
|
28725
|
-
|
|
28726
|
-
|
|
28727
|
-
|
|
28339
|
+
_b.trys.push([1, 3,, 4]);
|
|
28340
|
+
return [4 /*yield*/, prov.deleteGeofences(geofenceIdsInputArray, options)];
|
|
28341
|
+
case 2:
|
|
28342
|
+
return [2 /*return*/, _b.sent()];
|
|
28343
|
+
case 3:
|
|
28344
|
+
error_6 = _b.sent();
|
|
28345
|
+
logger.debug(error_6);
|
|
28346
|
+
throw error_6;
|
|
28728
28347
|
case 4:
|
|
28729
|
-
|
|
28730
|
-
return {
|
|
28731
|
-
value: op[1],
|
|
28732
|
-
done: false
|
|
28733
|
-
};
|
|
28734
|
-
|
|
28735
|
-
case 5:
|
|
28736
|
-
_.label++;
|
|
28737
|
-
y = op[1];
|
|
28738
|
-
op = [0];
|
|
28739
|
-
continue;
|
|
28740
|
-
|
|
28741
|
-
case 7:
|
|
28742
|
-
op = _.ops.pop();
|
|
28743
|
-
|
|
28744
|
-
_.trys.pop();
|
|
28745
|
-
|
|
28746
|
-
continue;
|
|
28747
|
-
|
|
28748
|
-
default:
|
|
28749
|
-
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
|
|
28750
|
-
_ = 0;
|
|
28751
|
-
continue;
|
|
28752
|
-
}
|
|
28753
|
-
|
|
28754
|
-
if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
|
|
28755
|
-
_.label = op[1];
|
|
28756
|
-
break;
|
|
28757
|
-
}
|
|
28758
|
-
|
|
28759
|
-
if (op[0] === 6 && _.label < t[1]) {
|
|
28760
|
-
_.label = t[1];
|
|
28761
|
-
t = op;
|
|
28762
|
-
break;
|
|
28763
|
-
}
|
|
28764
|
-
|
|
28765
|
-
if (t && _.label < t[2]) {
|
|
28766
|
-
_.label = t[2];
|
|
28767
|
-
|
|
28768
|
-
_.ops.push(op);
|
|
28769
|
-
|
|
28770
|
-
break;
|
|
28771
|
-
}
|
|
28772
|
-
|
|
28773
|
-
if (t[2]) _.ops.pop();
|
|
28774
|
-
|
|
28775
|
-
_.trys.pop();
|
|
28776
|
-
|
|
28777
|
-
continue;
|
|
28348
|
+
return [2 /*return*/];
|
|
28778
28349
|
}
|
|
28350
|
+
});
|
|
28351
|
+
});
|
|
28352
|
+
};
|
|
28779
28353
|
|
|
28780
|
-
|
|
28781
|
-
|
|
28782
|
-
|
|
28783
|
-
y = 0;
|
|
28784
|
-
} finally {
|
|
28785
|
-
f = t = 0;
|
|
28786
|
-
}
|
|
28787
|
-
}
|
|
28788
|
-
|
|
28789
|
-
if (op[0] & 5) throw op[1];
|
|
28790
|
-
return {
|
|
28791
|
-
value: op[0] ? op[1] : void 0,
|
|
28792
|
-
done: true
|
|
28793
|
-
};
|
|
28794
|
-
}
|
|
28795
|
-
};
|
|
28354
|
+
GeoClass.MODULE = 'Geo';
|
|
28355
|
+
return GeoClass;
|
|
28356
|
+
}();
|
|
28796
28357
|
|
|
28797
|
-
var
|
|
28798
|
-
|
|
28799
|
-
if (!m) return o;
|
|
28800
|
-
var i = m.call(o),
|
|
28801
|
-
r,
|
|
28802
|
-
ar = [],
|
|
28803
|
-
e;
|
|
28358
|
+
var Geo = new GeoClass();
|
|
28359
|
+
_aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__["Amplify"].register(Geo);
|
|
28804
28360
|
|
|
28805
|
-
|
|
28806
|
-
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) {
|
|
28807
|
-
ar.push(r.value);
|
|
28808
|
-
}
|
|
28809
|
-
} catch (error) {
|
|
28810
|
-
e = {
|
|
28811
|
-
error: error
|
|
28812
|
-
};
|
|
28813
|
-
} finally {
|
|
28814
|
-
try {
|
|
28815
|
-
if (r && !r.done && (m = i["return"])) m.call(i);
|
|
28816
|
-
} finally {
|
|
28817
|
-
if (e) throw e.error;
|
|
28818
|
-
}
|
|
28819
|
-
}
|
|
28361
|
+
/***/ }),
|
|
28820
28362
|
|
|
28821
|
-
|
|
28822
|
-
|
|
28363
|
+
/***/ "./lib-esm/Providers/AmazonLocationServiceProvider.js":
|
|
28364
|
+
/*!************************************************************!*\
|
|
28365
|
+
!*** ./lib-esm/Providers/AmazonLocationServiceProvider.js ***!
|
|
28366
|
+
\************************************************************/
|
|
28367
|
+
/*! exports provided: AmazonLocationServiceProvider */
|
|
28368
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
28823
28369
|
|
|
28824
|
-
|
|
28825
|
-
|
|
28826
|
-
|
|
28827
|
-
|
|
28370
|
+
"use strict";
|
|
28371
|
+
__webpack_require__.r(__webpack_exports__);
|
|
28372
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AmazonLocationServiceProvider", function() { return AmazonLocationServiceProvider; });
|
|
28373
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
28374
|
+
/* harmony import */ var camelcase_keys__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! camelcase-keys */ "../../node_modules/camelcase-keys/index.js");
|
|
28375
|
+
/* harmony import */ var camelcase_keys__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(camelcase_keys__WEBPACK_IMPORTED_MODULE_1__);
|
|
28376
|
+
/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @aws-amplify/core */ "@aws-amplify/core");
|
|
28377
|
+
/* harmony import */ var _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__);
|
|
28378
|
+
/* harmony import */ var _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @aws-sdk/client-location */ "../../node_modules/@aws-sdk/client-location/dist-es/index.js");
|
|
28379
|
+
/* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util */ "./lib-esm/util.js");
|
|
28828
28380
|
|
|
28829
|
-
return ar;
|
|
28830
|
-
};
|
|
28831
28381
|
/*
|
|
28832
28382
|
* Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
28833
28383
|
*
|
|
@@ -28844,13 +28394,8 @@ var __spread = undefined && undefined.__spread || function () {
|
|
|
28844
28394
|
|
|
28845
28395
|
|
|
28846
28396
|
|
|
28847
|
-
|
|
28848
|
-
|
|
28849
|
-
var logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__["ConsoleLogger"]('AmazonLocationServiceProvider');
|
|
28850
|
-
|
|
28851
|
-
var AmazonLocationServiceProvider =
|
|
28852
|
-
/** @class */
|
|
28853
|
-
function () {
|
|
28397
|
+
var logger = new _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__["ConsoleLogger"]('AmazonLocationServiceProvider');
|
|
28398
|
+
var AmazonLocationServiceProvider = /** @class */function () {
|
|
28854
28399
|
/**
|
|
28855
28400
|
* Initialize Geo with AWS configurations
|
|
28856
28401
|
* @param {Object} config - Configuration object for Geo
|
|
@@ -28863,8 +28408,6 @@ function () {
|
|
|
28863
28408
|
* get the category of the plugin
|
|
28864
28409
|
* @returns {string} name of the category
|
|
28865
28410
|
*/
|
|
28866
|
-
|
|
28867
|
-
|
|
28868
28411
|
AmazonLocationServiceProvider.prototype.getCategory = function () {
|
|
28869
28412
|
return AmazonLocationServiceProvider.CATEGORY;
|
|
28870
28413
|
};
|
|
@@ -28872,8 +28415,6 @@ function () {
|
|
|
28872
28415
|
* get provider name of the plugin
|
|
28873
28416
|
* @returns {string} name of the provider
|
|
28874
28417
|
*/
|
|
28875
|
-
|
|
28876
|
-
|
|
28877
28418
|
AmazonLocationServiceProvider.prototype.getProviderName = function () {
|
|
28878
28419
|
return AmazonLocationServiceProvider.PROVIDER_NAME;
|
|
28879
28420
|
};
|
|
@@ -28882,8 +28423,6 @@ function () {
|
|
|
28882
28423
|
* @param {Object} config - Configuration of the Geo
|
|
28883
28424
|
* @return {Object} - Current configuration
|
|
28884
28425
|
*/
|
|
28885
|
-
|
|
28886
|
-
|
|
28887
28426
|
AmazonLocationServiceProvider.prototype.configure = function (config) {
|
|
28888
28427
|
logger.debug('configure Amazon Location Service Provider', config);
|
|
28889
28428
|
if (!config) return this._config;
|
|
@@ -28894,15 +28433,11 @@ function () {
|
|
|
28894
28433
|
* Get the map resources that are currently available through the provider
|
|
28895
28434
|
* @returns {AmazonLocationServiceMapStyle[]}- Array of available map resources
|
|
28896
28435
|
*/
|
|
28897
|
-
|
|
28898
|
-
|
|
28899
28436
|
AmazonLocationServiceProvider.prototype.getAvailableMaps = function () {
|
|
28900
28437
|
this._verifyMapResources();
|
|
28901
|
-
|
|
28902
28438
|
var mapStyles = [];
|
|
28903
28439
|
var availableMaps = this._config.maps.items;
|
|
28904
28440
|
var region = this._config.region;
|
|
28905
|
-
|
|
28906
28441
|
for (var mapName in availableMaps) {
|
|
28907
28442
|
var style = availableMaps[mapName].style;
|
|
28908
28443
|
mapStyles.push({
|
|
@@ -28911,18 +28446,14 @@ function () {
|
|
|
28911
28446
|
region: region
|
|
28912
28447
|
});
|
|
28913
28448
|
}
|
|
28914
|
-
|
|
28915
28449
|
return mapStyles;
|
|
28916
28450
|
};
|
|
28917
28451
|
/**
|
|
28918
28452
|
* Get the map resource set as default in amplify config
|
|
28919
28453
|
* @returns {AmazonLocationServiceMapStyle} - Map resource set as the default in amplify config
|
|
28920
28454
|
*/
|
|
28921
|
-
|
|
28922
|
-
|
|
28923
28455
|
AmazonLocationServiceProvider.prototype.getDefaultMap = function () {
|
|
28924
28456
|
this._verifyMapResources();
|
|
28925
|
-
|
|
28926
28457
|
var mapName = this._config.maps["default"];
|
|
28927
28458
|
var style = this._config.maps.items[mapName].style;
|
|
28928
28459
|
var region = this._config.region;
|
|
@@ -28938,27 +28469,19 @@ function () {
|
|
|
28938
28469
|
* @param {SearchByTextOptions} options? - Optional parameters to the search
|
|
28939
28470
|
* @returns {Promise<Place[]>} - Promise resolves to a list of Places that match search parameters
|
|
28940
28471
|
*/
|
|
28941
|
-
|
|
28942
|
-
|
|
28943
28472
|
AmazonLocationServiceProvider.prototype.searchByText = function (text, options) {
|
|
28944
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
28473
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__awaiter"])(this, void 0, void 0, function () {
|
|
28945
28474
|
var credentialsOK, locationServiceInput, client, command, response, error_1, PascalResults, results;
|
|
28946
|
-
return __generator(this, function (_a) {
|
|
28475
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__generator"])(this, function (_a) {
|
|
28947
28476
|
switch (_a.label) {
|
|
28948
28477
|
case 0:
|
|
28949
|
-
return [4
|
|
28950
|
-
/*yield*/
|
|
28951
|
-
, this._ensureCredentials()];
|
|
28952
|
-
|
|
28478
|
+
return [4 /*yield*/, this._ensureCredentials()];
|
|
28953
28479
|
case 1:
|
|
28954
28480
|
credentialsOK = _a.sent();
|
|
28955
|
-
|
|
28956
28481
|
if (!credentialsOK) {
|
|
28957
28482
|
throw new Error('No credentials');
|
|
28958
28483
|
}
|
|
28959
|
-
|
|
28960
28484
|
this._verifySearchIndex(options === null || options === void 0 ? void 0 : options.searchIndexName);
|
|
28961
|
-
|
|
28962
28485
|
locationServiceInput = {
|
|
28963
28486
|
Text: text,
|
|
28964
28487
|
IndexName: this._config.search_indices["default"]
|
|
@@ -28966,64 +28489,47 @@ function () {
|
|
|
28966
28489
|
/**
|
|
28967
28490
|
* Map search options to Amazon Location Service input object
|
|
28968
28491
|
*/
|
|
28969
|
-
|
|
28970
28492
|
if (options) {
|
|
28971
28493
|
locationServiceInput.FilterCountries = options.countries;
|
|
28972
28494
|
locationServiceInput.MaxResults = options.maxResults;
|
|
28973
|
-
|
|
28974
28495
|
if (options.searchIndexName) {
|
|
28975
28496
|
locationServiceInput.IndexName = options.searchIndexName;
|
|
28976
28497
|
}
|
|
28977
|
-
|
|
28978
28498
|
if (options['biasPosition'] && options['searchAreaConstraints']) {
|
|
28979
28499
|
throw new Error('BiasPosition and SearchAreaConstraints are mutually exclusive, please remove one or the other from the options object');
|
|
28980
28500
|
}
|
|
28981
|
-
|
|
28982
28501
|
if (options['biasPosition']) {
|
|
28983
28502
|
locationServiceInput.BiasPosition = options['biasPosition'];
|
|
28984
28503
|
}
|
|
28985
|
-
|
|
28986
28504
|
if (options['searchAreaConstraints']) {
|
|
28987
28505
|
locationServiceInput.FilterBBox = options['searchAreaConstraints'];
|
|
28988
28506
|
}
|
|
28989
28507
|
}
|
|
28990
|
-
|
|
28991
|
-
client = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_2__["LocationClient"]({
|
|
28508
|
+
client = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_3__["LocationClient"]({
|
|
28992
28509
|
credentials: this._config.credentials,
|
|
28993
28510
|
region: this._config.region,
|
|
28994
|
-
customUserAgent: Object(
|
|
28511
|
+
customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__["getAmplifyUserAgent"])()
|
|
28995
28512
|
});
|
|
28996
|
-
command = new
|
|
28513
|
+
command = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_3__["SearchPlaceIndexForTextCommand"](locationServiceInput);
|
|
28997
28514
|
_a.label = 2;
|
|
28998
|
-
|
|
28999
28515
|
case 2:
|
|
29000
28516
|
_a.trys.push([2, 4,, 5]);
|
|
29001
|
-
|
|
29002
|
-
return [4
|
|
29003
|
-
/*yield*/
|
|
29004
|
-
, client.send(command)];
|
|
29005
|
-
|
|
28517
|
+
return [4 /*yield*/, client.send(command)];
|
|
29006
28518
|
case 3:
|
|
29007
28519
|
response = _a.sent();
|
|
29008
|
-
return [3
|
|
29009
|
-
/*break*/
|
|
29010
|
-
, 5];
|
|
29011
|
-
|
|
28520
|
+
return [3 /*break*/, 5];
|
|
29012
28521
|
case 4:
|
|
29013
28522
|
error_1 = _a.sent();
|
|
29014
28523
|
logger.debug(error_1);
|
|
29015
28524
|
throw error_1;
|
|
29016
|
-
|
|
29017
28525
|
case 5:
|
|
29018
28526
|
PascalResults = response.Results.map(function (result) {
|
|
29019
28527
|
return result.Place;
|
|
29020
28528
|
});
|
|
29021
|
-
results =
|
|
28529
|
+
results = camelcase_keys__WEBPACK_IMPORTED_MODULE_1___default()(PascalResults, {
|
|
29022
28530
|
deep: true
|
|
29023
28531
|
});
|
|
29024
|
-
return [2
|
|
29025
|
-
/*return*/
|
|
29026
|
-
, results];
|
|
28532
|
+
return [2 /*return*/, results];
|
|
29027
28533
|
}
|
|
29028
28534
|
});
|
|
29029
28535
|
});
|
|
@@ -29034,76 +28540,54 @@ function () {
|
|
|
29034
28540
|
* @param options - Options parameters for the search
|
|
29035
28541
|
* @returns {Promise<Place>} - Promise that resolves to a place matching search coordinates
|
|
29036
28542
|
*/
|
|
29037
|
-
|
|
29038
|
-
|
|
29039
28543
|
AmazonLocationServiceProvider.prototype.searchByCoordinates = function (coordinates, options) {
|
|
29040
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
28544
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__awaiter"])(this, void 0, void 0, function () {
|
|
29041
28545
|
var credentialsOK, locationServiceInput, client, command, response, error_2, PascalResults, results;
|
|
29042
|
-
return __generator(this, function (_a) {
|
|
28546
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__generator"])(this, function (_a) {
|
|
29043
28547
|
switch (_a.label) {
|
|
29044
28548
|
case 0:
|
|
29045
|
-
return [4
|
|
29046
|
-
/*yield*/
|
|
29047
|
-
, this._ensureCredentials()];
|
|
29048
|
-
|
|
28549
|
+
return [4 /*yield*/, this._ensureCredentials()];
|
|
29049
28550
|
case 1:
|
|
29050
28551
|
credentialsOK = _a.sent();
|
|
29051
|
-
|
|
29052
28552
|
if (!credentialsOK) {
|
|
29053
28553
|
throw new Error('No credentials');
|
|
29054
28554
|
}
|
|
29055
|
-
|
|
29056
28555
|
this._verifySearchIndex(options === null || options === void 0 ? void 0 : options.searchIndexName);
|
|
29057
|
-
|
|
29058
28556
|
locationServiceInput = {
|
|
29059
28557
|
Position: coordinates,
|
|
29060
28558
|
IndexName: this._config.search_indices["default"]
|
|
29061
28559
|
};
|
|
29062
|
-
|
|
29063
28560
|
if (options) {
|
|
29064
28561
|
if (options.searchIndexName) {
|
|
29065
28562
|
locationServiceInput.IndexName = options.searchIndexName;
|
|
29066
28563
|
}
|
|
29067
|
-
|
|
29068
28564
|
locationServiceInput.MaxResults = options.maxResults;
|
|
29069
28565
|
}
|
|
29070
|
-
|
|
29071
|
-
client = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_2__["LocationClient"]({
|
|
28566
|
+
client = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_3__["LocationClient"]({
|
|
29072
28567
|
credentials: this._config.credentials,
|
|
29073
28568
|
region: this._config.region,
|
|
29074
|
-
customUserAgent: Object(
|
|
28569
|
+
customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__["getAmplifyUserAgent"])()
|
|
29075
28570
|
});
|
|
29076
|
-
command = new
|
|
28571
|
+
command = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_3__["SearchPlaceIndexForPositionCommand"](locationServiceInput);
|
|
29077
28572
|
_a.label = 2;
|
|
29078
|
-
|
|
29079
28573
|
case 2:
|
|
29080
28574
|
_a.trys.push([2, 4,, 5]);
|
|
29081
|
-
|
|
29082
|
-
return [4
|
|
29083
|
-
/*yield*/
|
|
29084
|
-
, client.send(command)];
|
|
29085
|
-
|
|
28575
|
+
return [4 /*yield*/, client.send(command)];
|
|
29086
28576
|
case 3:
|
|
29087
28577
|
response = _a.sent();
|
|
29088
|
-
return [3
|
|
29089
|
-
/*break*/
|
|
29090
|
-
, 5];
|
|
29091
|
-
|
|
28578
|
+
return [3 /*break*/, 5];
|
|
29092
28579
|
case 4:
|
|
29093
28580
|
error_2 = _a.sent();
|
|
29094
28581
|
logger.debug(error_2);
|
|
29095
28582
|
throw error_2;
|
|
29096
|
-
|
|
29097
28583
|
case 5:
|
|
29098
28584
|
PascalResults = response.Results.map(function (result) {
|
|
29099
28585
|
return result.Place;
|
|
29100
28586
|
});
|
|
29101
|
-
results =
|
|
28587
|
+
results = camelcase_keys__WEBPACK_IMPORTED_MODULE_1___default()(PascalResults[0], {
|
|
29102
28588
|
deep: true
|
|
29103
28589
|
});
|
|
29104
|
-
return [2
|
|
29105
|
-
/*return*/
|
|
29106
|
-
, results];
|
|
28590
|
+
return [2 /*return*/, results];
|
|
29107
28591
|
}
|
|
29108
28592
|
});
|
|
29109
28593
|
});
|
|
@@ -29116,44 +28600,33 @@ function () {
|
|
|
29116
28600
|
* successes: list of geofences successfully created
|
|
29117
28601
|
* errors: list of geofences that failed to create
|
|
29118
28602
|
*/
|
|
29119
|
-
|
|
29120
|
-
|
|
29121
28603
|
AmazonLocationServiceProvider.prototype.saveGeofences = function (geofences, options) {
|
|
29122
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
28604
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__awaiter"])(this, void 0, void 0, function () {
|
|
29123
28605
|
var credentialsOK, PascalGeofences, results, geofenceBatches, apiLimit;
|
|
29124
|
-
|
|
29125
28606
|
var _this = this;
|
|
29126
|
-
|
|
29127
|
-
return __generator(this, function (_a) {
|
|
28607
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__generator"])(this, function (_a) {
|
|
29128
28608
|
switch (_a.label) {
|
|
29129
28609
|
case 0:
|
|
29130
28610
|
if (geofences.length < 1) {
|
|
29131
28611
|
throw new Error('Geofence input array is empty');
|
|
29132
28612
|
}
|
|
29133
|
-
|
|
29134
|
-
return [4
|
|
29135
|
-
/*yield*/
|
|
29136
|
-
, this._ensureCredentials()];
|
|
29137
|
-
|
|
28613
|
+
return [4 /*yield*/, this._ensureCredentials()];
|
|
29138
28614
|
case 1:
|
|
29139
28615
|
credentialsOK = _a.sent();
|
|
29140
|
-
|
|
29141
28616
|
if (!credentialsOK) {
|
|
29142
28617
|
throw new Error('No credentials');
|
|
29143
|
-
}
|
|
29144
|
-
|
|
29145
|
-
|
|
28618
|
+
}
|
|
28619
|
+
// Verify geofence collection exists in aws-config.js
|
|
29146
28620
|
try {
|
|
29147
28621
|
this._verifyGeofenceCollections(options === null || options === void 0 ? void 0 : options.collectionName);
|
|
29148
28622
|
} catch (error) {
|
|
29149
28623
|
logger.debug(error);
|
|
29150
28624
|
throw error;
|
|
29151
28625
|
}
|
|
29152
|
-
|
|
29153
|
-
Object(_util__WEBPACK_IMPORTED_MODULE_3__["validateGeofencesInput"])(geofences);
|
|
28626
|
+
Object(_util__WEBPACK_IMPORTED_MODULE_4__["validateGeofencesInput"])(geofences);
|
|
29154
28627
|
PascalGeofences = geofences.map(function (_a) {
|
|
29155
28628
|
var geofenceId = _a.geofenceId,
|
|
29156
|
-
|
|
28629
|
+
polygon = _a.geometry.polygon;
|
|
29157
28630
|
return {
|
|
29158
28631
|
GeofenceId: geofenceId,
|
|
29159
28632
|
Geometry: {
|
|
@@ -29166,35 +28639,24 @@ function () {
|
|
|
29166
28639
|
errors: []
|
|
29167
28640
|
};
|
|
29168
28641
|
geofenceBatches = [];
|
|
29169
|
-
|
|
29170
28642
|
while (PascalGeofences.length > 0) {
|
|
29171
28643
|
apiLimit = 10;
|
|
29172
28644
|
geofenceBatches.push(PascalGeofences.splice(0, apiLimit));
|
|
29173
28645
|
}
|
|
29174
|
-
|
|
29175
|
-
|
|
29176
|
-
/*yield*/
|
|
29177
|
-
, Promise.all(geofenceBatches.map(function (batch) {
|
|
29178
|
-
return __awaiter(_this, void 0, void 0, function () {
|
|
28646
|
+
return [4 /*yield*/, Promise.all(geofenceBatches.map(function (batch) {
|
|
28647
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__awaiter"])(_this, void 0, void 0, function () {
|
|
29179
28648
|
var response, error_3;
|
|
29180
|
-
return __generator(this, function (_a) {
|
|
28649
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__generator"])(this, function (_a) {
|
|
29181
28650
|
switch (_a.label) {
|
|
29182
28651
|
case 0:
|
|
29183
28652
|
_a.trys.push([0, 2,, 3]);
|
|
29184
|
-
|
|
29185
|
-
return [4
|
|
29186
|
-
/*yield*/
|
|
29187
|
-
, this._AmazonLocationServiceBatchPutGeofenceCall(batch, (options === null || options === void 0 ? void 0 : options.collectionName) || this._config.geofenceCollections["default"])];
|
|
29188
|
-
|
|
28653
|
+
return [4 /*yield*/, this._AmazonLocationServiceBatchPutGeofenceCall(batch, (options === null || options === void 0 ? void 0 : options.collectionName) || this._config.geofenceCollections["default"])];
|
|
29189
28654
|
case 1:
|
|
29190
28655
|
response = _a.sent();
|
|
29191
|
-
return [3
|
|
29192
|
-
/*break*/
|
|
29193
|
-
, 3];
|
|
29194
|
-
|
|
28656
|
+
return [3 /*break*/, 3];
|
|
29195
28657
|
case 2:
|
|
29196
|
-
error_3 = _a.sent();
|
|
29197
|
-
|
|
28658
|
+
error_3 = _a.sent();
|
|
28659
|
+
// If the API call fails, add the geofences to the errors array and move to next batch
|
|
29198
28660
|
batch.forEach(function (geofence) {
|
|
29199
28661
|
results.errors.push({
|
|
29200
28662
|
geofenceId: geofence.GeofenceId,
|
|
@@ -29204,28 +28666,25 @@ function () {
|
|
|
29204
28666
|
}
|
|
29205
28667
|
});
|
|
29206
28668
|
});
|
|
29207
|
-
return [2
|
|
29208
|
-
/*return*/
|
|
29209
|
-
];
|
|
29210
|
-
|
|
28669
|
+
return [2 /*return*/];
|
|
29211
28670
|
case 3:
|
|
29212
28671
|
// Push all successes to results
|
|
29213
28672
|
response.Successes.forEach(function (success) {
|
|
29214
28673
|
var GeofenceId = success.GeofenceId,
|
|
29215
|
-
|
|
29216
|
-
|
|
28674
|
+
CreateTime = success.CreateTime,
|
|
28675
|
+
UpdateTime = success.UpdateTime;
|
|
29217
28676
|
results.successes.push({
|
|
29218
28677
|
geofenceId: GeofenceId,
|
|
29219
28678
|
createTime: CreateTime,
|
|
29220
28679
|
updateTime: UpdateTime
|
|
29221
28680
|
});
|
|
29222
|
-
});
|
|
29223
|
-
|
|
28681
|
+
});
|
|
28682
|
+
// Push all errors to results
|
|
29224
28683
|
response.Errors.forEach(function (error) {
|
|
29225
28684
|
var _a = error.Error,
|
|
29226
|
-
|
|
29227
|
-
|
|
29228
|
-
|
|
28685
|
+
Code = _a.Code,
|
|
28686
|
+
Message = _a.Message,
|
|
28687
|
+
GeofenceId = error.GeofenceId;
|
|
29229
28688
|
results.errors.push({
|
|
29230
28689
|
error: {
|
|
29231
28690
|
code: Code,
|
|
@@ -29234,9 +28693,7 @@ function () {
|
|
|
29234
28693
|
geofenceId: GeofenceId
|
|
29235
28694
|
});
|
|
29236
28695
|
});
|
|
29237
|
-
return [2
|
|
29238
|
-
/*return*/
|
|
29239
|
-
];
|
|
28696
|
+
return [2 /*return*/];
|
|
29240
28697
|
}
|
|
29241
28698
|
});
|
|
29242
28699
|
});
|
|
@@ -29244,10 +28701,7 @@ function () {
|
|
|
29244
28701
|
|
|
29245
28702
|
case 2:
|
|
29246
28703
|
_a.sent();
|
|
29247
|
-
|
|
29248
|
-
return [2
|
|
29249
|
-
/*return*/
|
|
29250
|
-
, results];
|
|
28704
|
+
return [2 /*return*/, results];
|
|
29251
28705
|
}
|
|
29252
28706
|
});
|
|
29253
28707
|
});
|
|
@@ -29258,64 +28712,47 @@ function () {
|
|
|
29258
28712
|
* @param options?: Optional parameters for getGeofence
|
|
29259
28713
|
* @returns {Promise<AmazonLocationServiceGeofence>} - Promise that resolves to a geofence object
|
|
29260
28714
|
*/
|
|
29261
|
-
|
|
29262
|
-
|
|
29263
28715
|
AmazonLocationServiceProvider.prototype.getGeofence = function (geofenceId, options) {
|
|
29264
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
28716
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__awaiter"])(this, void 0, void 0, function () {
|
|
29265
28717
|
var credentialsOK, client, commandInput, command, response, error_4, GeofenceId, CreateTime, UpdateTime, Status, Geometry, geofence;
|
|
29266
|
-
return __generator(this, function (_a) {
|
|
28718
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__generator"])(this, function (_a) {
|
|
29267
28719
|
switch (_a.label) {
|
|
29268
28720
|
case 0:
|
|
29269
|
-
return [4
|
|
29270
|
-
/*yield*/
|
|
29271
|
-
, this._ensureCredentials()];
|
|
29272
|
-
|
|
28721
|
+
return [4 /*yield*/, this._ensureCredentials()];
|
|
29273
28722
|
case 1:
|
|
29274
28723
|
credentialsOK = _a.sent();
|
|
29275
|
-
|
|
29276
28724
|
if (!credentialsOK) {
|
|
29277
28725
|
throw new Error('No credentials');
|
|
29278
|
-
}
|
|
29279
|
-
|
|
29280
|
-
|
|
28726
|
+
}
|
|
28727
|
+
// Verify geofence collection exists in aws-config.js
|
|
29281
28728
|
try {
|
|
29282
28729
|
this._verifyGeofenceCollections(options === null || options === void 0 ? void 0 : options.collectionName);
|
|
29283
28730
|
} catch (error) {
|
|
29284
28731
|
logger.debug(error);
|
|
29285
28732
|
throw error;
|
|
29286
28733
|
}
|
|
29287
|
-
|
|
29288
|
-
|
|
29289
|
-
client = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_2__["LocationClient"]({
|
|
28734
|
+
Object(_util__WEBPACK_IMPORTED_MODULE_4__["validateGeofenceId"])(geofenceId);
|
|
28735
|
+
client = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_3__["LocationClient"]({
|
|
29290
28736
|
credentials: this._config.credentials,
|
|
29291
28737
|
region: this._config.region,
|
|
29292
|
-
customUserAgent: Object(
|
|
28738
|
+
customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__["getAmplifyUserAgent"])()
|
|
29293
28739
|
});
|
|
29294
28740
|
commandInput = {
|
|
29295
28741
|
GeofenceId: geofenceId,
|
|
29296
28742
|
CollectionName: (options === null || options === void 0 ? void 0 : options.collectionName) || this._config.geofenceCollections["default"]
|
|
29297
28743
|
};
|
|
29298
|
-
command = new
|
|
28744
|
+
command = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_3__["GetGeofenceCommand"](commandInput);
|
|
29299
28745
|
_a.label = 2;
|
|
29300
|
-
|
|
29301
28746
|
case 2:
|
|
29302
28747
|
_a.trys.push([2, 4,, 5]);
|
|
29303
|
-
|
|
29304
|
-
return [4
|
|
29305
|
-
/*yield*/
|
|
29306
|
-
, client.send(command)];
|
|
29307
|
-
|
|
28748
|
+
return [4 /*yield*/, client.send(command)];
|
|
29308
28749
|
case 3:
|
|
29309
28750
|
response = _a.sent();
|
|
29310
|
-
return [3
|
|
29311
|
-
/*break*/
|
|
29312
|
-
, 5];
|
|
29313
|
-
|
|
28751
|
+
return [3 /*break*/, 5];
|
|
29314
28752
|
case 4:
|
|
29315
28753
|
error_4 = _a.sent();
|
|
29316
28754
|
logger.debug(error_4);
|
|
29317
28755
|
throw error_4;
|
|
29318
|
-
|
|
29319
28756
|
case 5:
|
|
29320
28757
|
GeofenceId = response.GeofenceId, CreateTime = response.CreateTime, UpdateTime = response.UpdateTime, Status = response.Status, Geometry = response.Geometry;
|
|
29321
28758
|
geofence = {
|
|
@@ -29327,9 +28764,7 @@ function () {
|
|
|
29327
28764
|
status: Status,
|
|
29328
28765
|
updateTime: UpdateTime
|
|
29329
28766
|
};
|
|
29330
|
-
return [2
|
|
29331
|
-
/*return*/
|
|
29332
|
-
, geofence];
|
|
28767
|
+
return [2 /*return*/, geofence];
|
|
29333
28768
|
}
|
|
29334
28769
|
});
|
|
29335
28770
|
});
|
|
@@ -29341,72 +28776,55 @@ function () {
|
|
|
29341
28776
|
* entries: list of geofences - 100 geofences are listed per page
|
|
29342
28777
|
* nextToken: token for next page of geofences
|
|
29343
28778
|
*/
|
|
29344
|
-
|
|
29345
|
-
|
|
29346
28779
|
AmazonLocationServiceProvider.prototype.listGeofences = function (options) {
|
|
29347
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
28780
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__awaiter"])(this, void 0, void 0, function () {
|
|
29348
28781
|
var credentialsOK, client, listGeofencesInput, command, response, error_5, NextToken, Entries, results;
|
|
29349
|
-
return __generator(this, function (_a) {
|
|
28782
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__generator"])(this, function (_a) {
|
|
29350
28783
|
switch (_a.label) {
|
|
29351
28784
|
case 0:
|
|
29352
|
-
return [4
|
|
29353
|
-
/*yield*/
|
|
29354
|
-
, this._ensureCredentials()];
|
|
29355
|
-
|
|
28785
|
+
return [4 /*yield*/, this._ensureCredentials()];
|
|
29356
28786
|
case 1:
|
|
29357
28787
|
credentialsOK = _a.sent();
|
|
29358
|
-
|
|
29359
28788
|
if (!credentialsOK) {
|
|
29360
28789
|
throw new Error('No credentials');
|
|
29361
|
-
}
|
|
29362
|
-
|
|
29363
|
-
|
|
28790
|
+
}
|
|
28791
|
+
// Verify geofence collection exists in aws-config.js
|
|
29364
28792
|
try {
|
|
29365
28793
|
this._verifyGeofenceCollections(options === null || options === void 0 ? void 0 : options.collectionName);
|
|
29366
28794
|
} catch (error) {
|
|
29367
28795
|
logger.debug(error);
|
|
29368
28796
|
throw error;
|
|
29369
28797
|
}
|
|
29370
|
-
|
|
29371
|
-
client = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_2__["LocationClient"]({
|
|
28798
|
+
client = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_3__["LocationClient"]({
|
|
29372
28799
|
credentials: this._config.credentials,
|
|
29373
28800
|
region: this._config.region,
|
|
29374
|
-
customUserAgent: Object(
|
|
28801
|
+
customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__["getAmplifyUserAgent"])()
|
|
29375
28802
|
});
|
|
29376
28803
|
listGeofencesInput = {
|
|
29377
28804
|
NextToken: options === null || options === void 0 ? void 0 : options.nextToken,
|
|
29378
28805
|
CollectionName: (options === null || options === void 0 ? void 0 : options.collectionName) || this._config.geofenceCollections["default"]
|
|
29379
28806
|
};
|
|
29380
|
-
command = new
|
|
28807
|
+
command = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_3__["ListGeofencesCommand"](listGeofencesInput);
|
|
29381
28808
|
_a.label = 2;
|
|
29382
|
-
|
|
29383
28809
|
case 2:
|
|
29384
28810
|
_a.trys.push([2, 4,, 5]);
|
|
29385
|
-
|
|
29386
|
-
return [4
|
|
29387
|
-
/*yield*/
|
|
29388
|
-
, client.send(command)];
|
|
29389
|
-
|
|
28811
|
+
return [4 /*yield*/, client.send(command)];
|
|
29390
28812
|
case 3:
|
|
29391
28813
|
response = _a.sent();
|
|
29392
|
-
return [3
|
|
29393
|
-
/*break*/
|
|
29394
|
-
, 5];
|
|
29395
|
-
|
|
28814
|
+
return [3 /*break*/, 5];
|
|
29396
28815
|
case 4:
|
|
29397
28816
|
error_5 = _a.sent();
|
|
29398
28817
|
logger.debug(error_5);
|
|
29399
28818
|
throw error_5;
|
|
29400
|
-
|
|
29401
28819
|
case 5:
|
|
29402
28820
|
NextToken = response.NextToken, Entries = response.Entries;
|
|
29403
28821
|
results = {
|
|
29404
28822
|
entries: Entries.map(function (_a) {
|
|
29405
28823
|
var GeofenceId = _a.GeofenceId,
|
|
29406
|
-
|
|
29407
|
-
|
|
29408
|
-
|
|
29409
|
-
|
|
28824
|
+
CreateTime = _a.CreateTime,
|
|
28825
|
+
UpdateTime = _a.UpdateTime,
|
|
28826
|
+
Status = _a.Status,
|
|
28827
|
+
Polygon = _a.Geometry.Polygon;
|
|
29410
28828
|
return {
|
|
29411
28829
|
geofenceId: GeofenceId,
|
|
29412
28830
|
createTime: CreateTime,
|
|
@@ -29419,9 +28837,7 @@ function () {
|
|
|
29419
28837
|
}),
|
|
29420
28838
|
nextToken: NextToken
|
|
29421
28839
|
};
|
|
29422
|
-
return [2
|
|
29423
|
-
/*return*/
|
|
29424
|
-
, results];
|
|
28840
|
+
return [2 /*return*/, results];
|
|
29425
28841
|
}
|
|
29426
28842
|
});
|
|
29427
28843
|
});
|
|
@@ -29434,83 +28850,57 @@ function () {
|
|
|
29434
28850
|
* successes: list of geofences successfully deleted
|
|
29435
28851
|
* errors: list of geofences that failed to delete
|
|
29436
28852
|
*/
|
|
29437
|
-
|
|
29438
|
-
|
|
29439
28853
|
AmazonLocationServiceProvider.prototype.deleteGeofences = function (geofenceIds, options) {
|
|
29440
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
28854
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__awaiter"])(this, void 0, void 0, function () {
|
|
29441
28855
|
var credentialsOK, badGeofenceIds, results, geofenceIdBatches, count;
|
|
29442
|
-
|
|
29443
28856
|
var _this = this;
|
|
29444
|
-
|
|
29445
|
-
return __generator(this, function (_a) {
|
|
28857
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__generator"])(this, function (_a) {
|
|
29446
28858
|
switch (_a.label) {
|
|
29447
28859
|
case 0:
|
|
29448
28860
|
if (geofenceIds.length < 1) {
|
|
29449
28861
|
throw new Error('GeofenceId input array is empty');
|
|
29450
28862
|
}
|
|
29451
|
-
|
|
29452
|
-
return [4
|
|
29453
|
-
/*yield*/
|
|
29454
|
-
, this._ensureCredentials()];
|
|
29455
|
-
|
|
28863
|
+
return [4 /*yield*/, this._ensureCredentials()];
|
|
29456
28864
|
case 1:
|
|
29457
28865
|
credentialsOK = _a.sent();
|
|
29458
|
-
|
|
29459
28866
|
if (!credentialsOK) {
|
|
29460
28867
|
throw new Error('No credentials');
|
|
29461
28868
|
}
|
|
29462
|
-
|
|
29463
28869
|
this._verifyGeofenceCollections(options === null || options === void 0 ? void 0 : options.collectionName);
|
|
29464
|
-
|
|
29465
28870
|
badGeofenceIds = geofenceIds.filter(function (geofenceId) {
|
|
29466
28871
|
try {
|
|
29467
|
-
Object(
|
|
28872
|
+
Object(_util__WEBPACK_IMPORTED_MODULE_4__["validateGeofenceId"])(geofenceId);
|
|
29468
28873
|
} catch (error) {
|
|
29469
28874
|
return true;
|
|
29470
28875
|
}
|
|
29471
28876
|
});
|
|
29472
|
-
|
|
29473
28877
|
if (badGeofenceIds.length > 0) {
|
|
29474
28878
|
throw new Error("Invalid geofence ids: " + badGeofenceIds.join(', '));
|
|
29475
28879
|
}
|
|
29476
|
-
|
|
29477
28880
|
results = {
|
|
29478
28881
|
successes: [],
|
|
29479
28882
|
errors: []
|
|
29480
28883
|
};
|
|
29481
28884
|
geofenceIdBatches = [];
|
|
29482
28885
|
count = 0;
|
|
29483
|
-
|
|
29484
28886
|
while (count < geofenceIds.length) {
|
|
29485
28887
|
geofenceIdBatches.push(geofenceIds.slice(count, count += 10));
|
|
29486
28888
|
}
|
|
29487
|
-
|
|
29488
|
-
|
|
29489
|
-
/*yield*/
|
|
29490
|
-
, Promise.all(geofenceIdBatches.map(function (batch) {
|
|
29491
|
-
return __awaiter(_this, void 0, void 0, function () {
|
|
28889
|
+
return [4 /*yield*/, Promise.all(geofenceIdBatches.map(function (batch) {
|
|
28890
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__awaiter"])(_this, void 0, void 0, function () {
|
|
29492
28891
|
var response, error_6, badGeofenceIds;
|
|
29493
|
-
|
|
29494
28892
|
var _a;
|
|
29495
|
-
|
|
29496
|
-
return __generator(this, function (_b) {
|
|
28893
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__generator"])(this, function (_b) {
|
|
29497
28894
|
switch (_b.label) {
|
|
29498
28895
|
case 0:
|
|
29499
28896
|
_b.trys.push([0, 2,, 3]);
|
|
29500
|
-
|
|
29501
|
-
return [4
|
|
29502
|
-
/*yield*/
|
|
29503
|
-
, this._AmazonLocationServiceBatchDeleteGeofenceCall(batch, (options === null || options === void 0 ? void 0 : options.collectionName) || this._config.geofenceCollections["default"])];
|
|
29504
|
-
|
|
28897
|
+
return [4 /*yield*/, this._AmazonLocationServiceBatchDeleteGeofenceCall(batch, (options === null || options === void 0 ? void 0 : options.collectionName) || this._config.geofenceCollections["default"])];
|
|
29505
28898
|
case 1:
|
|
29506
28899
|
response = _b.sent();
|
|
29507
|
-
return [3
|
|
29508
|
-
/*break*/
|
|
29509
|
-
, 3];
|
|
29510
|
-
|
|
28900
|
+
return [3 /*break*/, 3];
|
|
29511
28901
|
case 2:
|
|
29512
|
-
error_6 = _b.sent();
|
|
29513
|
-
|
|
28902
|
+
error_6 = _b.sent();
|
|
28903
|
+
// If the API call fails, add the geofences to the errors array and move to next batch
|
|
29514
28904
|
batch.forEach(function (geofenceId) {
|
|
29515
28905
|
var errorObject = {
|
|
29516
28906
|
geofenceId: geofenceId,
|
|
@@ -29521,23 +28911,16 @@ function () {
|
|
|
29521
28911
|
};
|
|
29522
28912
|
results.errors.push(errorObject);
|
|
29523
28913
|
});
|
|
29524
|
-
return [2
|
|
29525
|
-
/*return*/
|
|
29526
|
-
];
|
|
29527
|
-
|
|
28914
|
+
return [2 /*return*/];
|
|
29528
28915
|
case 3:
|
|
29529
28916
|
badGeofenceIds = response.Errors.map(function (_a) {
|
|
29530
28917
|
var geofenceId = _a.geofenceId;
|
|
29531
28918
|
return geofenceId;
|
|
29532
28919
|
});
|
|
29533
|
-
|
|
29534
|
-
(_a = results.successes).push.apply(_a, __spread(batch.filter(function (Id) {
|
|
28920
|
+
(_a = results.successes).push.apply(_a, Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__spread"])(batch.filter(function (Id) {
|
|
29535
28921
|
return !badGeofenceIds.includes(Id);
|
|
29536
28922
|
})));
|
|
29537
|
-
|
|
29538
|
-
return [2
|
|
29539
|
-
/*return*/
|
|
29540
|
-
];
|
|
28923
|
+
return [2 /*return*/];
|
|
29541
28924
|
}
|
|
29542
28925
|
});
|
|
29543
28926
|
});
|
|
@@ -29545,10 +28928,7 @@ function () {
|
|
|
29545
28928
|
|
|
29546
28929
|
case 2:
|
|
29547
28930
|
_a.sent();
|
|
29548
|
-
|
|
29549
|
-
return [2
|
|
29550
|
-
/*return*/
|
|
29551
|
-
, results];
|
|
28931
|
+
return [2 /*return*/, results];
|
|
29552
28932
|
}
|
|
29553
28933
|
});
|
|
29554
28934
|
});
|
|
@@ -29556,43 +28936,27 @@ function () {
|
|
|
29556
28936
|
/**
|
|
29557
28937
|
* @private
|
|
29558
28938
|
*/
|
|
29559
|
-
|
|
29560
|
-
|
|
29561
28939
|
AmazonLocationServiceProvider.prototype._ensureCredentials = function () {
|
|
29562
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
28940
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__awaiter"])(this, void 0, void 0, function () {
|
|
29563
28941
|
var credentials, cred, error_7;
|
|
29564
|
-
return __generator(this, function (_a) {
|
|
28942
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__generator"])(this, function (_a) {
|
|
29565
28943
|
switch (_a.label) {
|
|
29566
28944
|
case 0:
|
|
29567
28945
|
_a.trys.push([0, 2,, 3]);
|
|
29568
|
-
|
|
29569
|
-
return [4
|
|
29570
|
-
/*yield*/
|
|
29571
|
-
, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__["Credentials"].get()];
|
|
29572
|
-
|
|
28946
|
+
return [4 /*yield*/, _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__["Credentials"].get()];
|
|
29573
28947
|
case 1:
|
|
29574
28948
|
credentials = _a.sent();
|
|
29575
|
-
if (!credentials) return [2
|
|
29576
|
-
|
|
29577
|
-
, false];
|
|
29578
|
-
cred = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_1__["Credentials"].shear(credentials);
|
|
28949
|
+
if (!credentials) return [2 /*return*/, false];
|
|
28950
|
+
cred = _aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__["Credentials"].shear(credentials);
|
|
29579
28951
|
logger.debug('Set credentials for storage. Credentials are:', cred);
|
|
29580
28952
|
this._config.credentials = cred;
|
|
29581
|
-
return [2
|
|
29582
|
-
/*return*/
|
|
29583
|
-
, true];
|
|
29584
|
-
|
|
28953
|
+
return [2 /*return*/, true];
|
|
29585
28954
|
case 2:
|
|
29586
28955
|
error_7 = _a.sent();
|
|
29587
28956
|
logger.debug('Ensure credentials error. Credentials are:', error_7);
|
|
29588
|
-
return [2
|
|
29589
|
-
/*return*/
|
|
29590
|
-
, false];
|
|
29591
|
-
|
|
28957
|
+
return [2 /*return*/, false];
|
|
29592
28958
|
case 3:
|
|
29593
|
-
return [2
|
|
29594
|
-
/*return*/
|
|
29595
|
-
];
|
|
28959
|
+
return [2 /*return*/];
|
|
29596
28960
|
}
|
|
29597
28961
|
});
|
|
29598
28962
|
});
|
|
@@ -29604,14 +28968,12 @@ function () {
|
|
|
29604
28968
|
logger.debug(errorString);
|
|
29605
28969
|
throw new Error(errorString);
|
|
29606
28970
|
}
|
|
29607
|
-
|
|
29608
28971
|
if (!this._config.maps["default"]) {
|
|
29609
28972
|
var errorString = "No default map resource found in amplify config, run 'amplify add geo' to create one and run `amplify push` after";
|
|
29610
28973
|
logger.debug(errorString);
|
|
29611
28974
|
throw new Error(errorString);
|
|
29612
28975
|
}
|
|
29613
28976
|
};
|
|
29614
|
-
|
|
29615
28977
|
AmazonLocationServiceProvider.prototype._verifySearchIndex = function (optionalSearchIndex) {
|
|
29616
28978
|
if ((!this._config.search_indices || !this._config.search_indices["default"]) && !optionalSearchIndex) {
|
|
29617
28979
|
var errorString = 'No Search Index found in amplify config, please run `amplify add geo` to create one and run `amplify push` after.';
|
|
@@ -29619,7 +28981,6 @@ function () {
|
|
|
29619
28981
|
throw new Error(errorString);
|
|
29620
28982
|
}
|
|
29621
28983
|
};
|
|
29622
|
-
|
|
29623
28984
|
AmazonLocationServiceProvider.prototype._verifyGeofenceCollections = function (optionalGeofenceCollectionName) {
|
|
29624
28985
|
if ((!this._config.geofenceCollections || !this._config.geofenceCollections["default"]) && !optionalGeofenceCollectionName) {
|
|
29625
28986
|
var errorString = 'No Geofence Collections found, please run `amplify add geo` to create one and run `amplify push` after.';
|
|
@@ -29627,102 +28988,76 @@ function () {
|
|
|
29627
28988
|
throw new Error(errorString);
|
|
29628
28989
|
}
|
|
29629
28990
|
};
|
|
29630
|
-
|
|
29631
28991
|
AmazonLocationServiceProvider.prototype._AmazonLocationServiceBatchPutGeofenceCall = function (PascalGeofences, collectionName) {
|
|
29632
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
28992
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__awaiter"])(this, void 0, void 0, function () {
|
|
29633
28993
|
var geofenceInput, client, command, response, error_8;
|
|
29634
|
-
return __generator(this, function (_a) {
|
|
28994
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__generator"])(this, function (_a) {
|
|
29635
28995
|
switch (_a.label) {
|
|
29636
28996
|
case 0:
|
|
29637
28997
|
geofenceInput = {
|
|
29638
28998
|
Entries: PascalGeofences,
|
|
29639
28999
|
CollectionName: collectionName || this._config.geofenceCollections["default"]
|
|
29640
29000
|
};
|
|
29641
|
-
client = new
|
|
29001
|
+
client = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_3__["LocationClient"]({
|
|
29642
29002
|
credentials: this._config.credentials,
|
|
29643
29003
|
region: this._config.region,
|
|
29644
|
-
customUserAgent: Object(
|
|
29004
|
+
customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__["getAmplifyUserAgent"])()
|
|
29645
29005
|
});
|
|
29646
|
-
command = new
|
|
29006
|
+
command = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_3__["BatchPutGeofenceCommand"](geofenceInput);
|
|
29647
29007
|
_a.label = 1;
|
|
29648
|
-
|
|
29649
29008
|
case 1:
|
|
29650
29009
|
_a.trys.push([1, 3,, 4]);
|
|
29651
|
-
|
|
29652
|
-
return [4
|
|
29653
|
-
/*yield*/
|
|
29654
|
-
, client.send(command)];
|
|
29655
|
-
|
|
29010
|
+
return [4 /*yield*/, client.send(command)];
|
|
29656
29011
|
case 2:
|
|
29657
29012
|
response = _a.sent();
|
|
29658
|
-
return [3
|
|
29659
|
-
/*break*/
|
|
29660
|
-
, 4];
|
|
29661
|
-
|
|
29013
|
+
return [3 /*break*/, 4];
|
|
29662
29014
|
case 3:
|
|
29663
29015
|
error_8 = _a.sent();
|
|
29664
29016
|
throw error_8;
|
|
29665
|
-
|
|
29666
29017
|
case 4:
|
|
29667
|
-
return [2
|
|
29668
|
-
/*return*/
|
|
29669
|
-
, response];
|
|
29018
|
+
return [2 /*return*/, response];
|
|
29670
29019
|
}
|
|
29671
29020
|
});
|
|
29672
29021
|
});
|
|
29673
29022
|
};
|
|
29674
|
-
|
|
29675
29023
|
AmazonLocationServiceProvider.prototype._AmazonLocationServiceBatchDeleteGeofenceCall = function (geofenceIds, collectionName) {
|
|
29676
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
29024
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__awaiter"])(this, void 0, void 0, function () {
|
|
29677
29025
|
var deleteGeofencesInput, client, command, response, error_9;
|
|
29678
|
-
return __generator(this, function (_a) {
|
|
29026
|
+
return Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__generator"])(this, function (_a) {
|
|
29679
29027
|
switch (_a.label) {
|
|
29680
29028
|
case 0:
|
|
29681
29029
|
deleteGeofencesInput = {
|
|
29682
29030
|
GeofenceIds: geofenceIds,
|
|
29683
29031
|
CollectionName: collectionName || this._config.geofenceCollections["default"]
|
|
29684
29032
|
};
|
|
29685
|
-
client = new
|
|
29033
|
+
client = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_3__["LocationClient"]({
|
|
29686
29034
|
credentials: this._config.credentials,
|
|
29687
29035
|
region: this._config.region,
|
|
29688
|
-
customUserAgent: Object(
|
|
29036
|
+
customUserAgent: Object(_aws_amplify_core__WEBPACK_IMPORTED_MODULE_2__["getAmplifyUserAgent"])()
|
|
29689
29037
|
});
|
|
29690
|
-
command = new
|
|
29038
|
+
command = new _aws_sdk_client_location__WEBPACK_IMPORTED_MODULE_3__["BatchDeleteGeofenceCommand"](deleteGeofencesInput);
|
|
29691
29039
|
_a.label = 1;
|
|
29692
|
-
|
|
29693
29040
|
case 1:
|
|
29694
29041
|
_a.trys.push([1, 3,, 4]);
|
|
29695
|
-
|
|
29696
|
-
return [4
|
|
29697
|
-
/*yield*/
|
|
29698
|
-
, client.send(command)];
|
|
29699
|
-
|
|
29042
|
+
return [4 /*yield*/, client.send(command)];
|
|
29700
29043
|
case 2:
|
|
29701
29044
|
response = _a.sent();
|
|
29702
|
-
return [3
|
|
29703
|
-
/*break*/
|
|
29704
|
-
, 4];
|
|
29705
|
-
|
|
29045
|
+
return [3 /*break*/, 4];
|
|
29706
29046
|
case 3:
|
|
29707
29047
|
error_9 = _a.sent();
|
|
29708
29048
|
throw error_9;
|
|
29709
|
-
|
|
29710
29049
|
case 4:
|
|
29711
|
-
return [2
|
|
29712
|
-
/*return*/
|
|
29713
|
-
, response];
|
|
29050
|
+
return [2 /*return*/, response];
|
|
29714
29051
|
}
|
|
29715
29052
|
});
|
|
29716
29053
|
});
|
|
29717
29054
|
};
|
|
29718
|
-
|
|
29719
29055
|
AmazonLocationServiceProvider.CATEGORY = 'Geo';
|
|
29720
29056
|
AmazonLocationServiceProvider.PROVIDER_NAME = 'AmazonLocationService';
|
|
29721
29057
|
return AmazonLocationServiceProvider;
|
|
29722
29058
|
}();
|
|
29723
29059
|
|
|
29724
29060
|
|
|
29725
|
-
|
|
29726
29061
|
/***/ }),
|
|
29727
29062
|
|
|
29728
29063
|
/***/ "./lib-esm/index.js":
|
|
@@ -29755,33 +29090,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
29755
29090
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "validateLinearRing", function() { return validateLinearRing; });
|
|
29756
29091
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "validatePolygon", function() { return validatePolygon; });
|
|
29757
29092
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "validateGeofencesInput", function() { return validateGeofencesInput; });
|
|
29758
|
-
/* harmony import */ var
|
|
29759
|
-
|
|
29760
|
-
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
|
29761
|
-
if (!m) return o;
|
|
29762
|
-
var i = m.call(o),
|
|
29763
|
-
r,
|
|
29764
|
-
ar = [],
|
|
29765
|
-
e;
|
|
29766
|
-
|
|
29767
|
-
try {
|
|
29768
|
-
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) {
|
|
29769
|
-
ar.push(r.value);
|
|
29770
|
-
}
|
|
29771
|
-
} catch (error) {
|
|
29772
|
-
e = {
|
|
29773
|
-
error: error
|
|
29774
|
-
};
|
|
29775
|
-
} finally {
|
|
29776
|
-
try {
|
|
29777
|
-
if (r && !r.done && (m = i["return"])) m.call(i);
|
|
29778
|
-
} finally {
|
|
29779
|
-
if (e) throw e.error;
|
|
29780
|
-
}
|
|
29781
|
-
}
|
|
29093
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../node_modules/tslib/tslib.es6.js");
|
|
29094
|
+
/* harmony import */ var _turf_boolean_clockwise__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @turf/boolean-clockwise */ "../../node_modules/@turf/boolean-clockwise/dist/es/index.js");
|
|
29782
29095
|
|
|
29783
|
-
return ar;
|
|
29784
|
-
};
|
|
29785
29096
|
/*
|
|
29786
29097
|
* Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
29787
29098
|
*
|
|
@@ -29795,13 +29106,10 @@ var __read = undefined && undefined.__read || function (o, n) {
|
|
|
29795
29106
|
* and limitations under the License.
|
|
29796
29107
|
*/
|
|
29797
29108
|
|
|
29798
|
-
|
|
29799
|
-
|
|
29800
29109
|
function validateCoordinates(lng, lat) {
|
|
29801
29110
|
if (!Number.isFinite(lng) || !Number.isFinite(lat)) {
|
|
29802
29111
|
throw new Error("Invalid coordinates: [" + lng + "," + lat + "]");
|
|
29803
29112
|
}
|
|
29804
|
-
|
|
29805
29113
|
if (lat < -90 || 90 < lat) {
|
|
29806
29114
|
throw new Error('Latitude must be between -90 and 90 degrees inclusive.');
|
|
29807
29115
|
} else if (lng < -180 || 180 < lng) {
|
|
@@ -29809,20 +29117,19 @@ function validateCoordinates(lng, lat) {
|
|
|
29809
29117
|
}
|
|
29810
29118
|
}
|
|
29811
29119
|
function validateGeofenceId(geofenceId) {
|
|
29812
|
-
var geofenceIdRegex = /^(?:[\x2D\.0-9A-Z_a-z\xAA\xB2\xB3\xB5\xB9\xBA\xBC-\xBE\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u0660-\u0669\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07C0-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0966-\u096F\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09E6-\u09F1\u09F4-\u09F9\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A66-\u0A6F\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AE6-\u0AEF\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B66-\u0B6F\u0B71-\u0B77\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0BE6-\u0BF2\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C66-\u0C6F\u0C78-\u0C7E\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CE6-\u0CEF\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D58-\u0D61\u0D66-\u0D78\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DE6-\u0DEF\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F20-\u0F33\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F-\u1049\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u1090-\u1099\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1369-\u137C\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u17E0-\u17E9\u17F0-\u17F9\u1810-\u1819\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u1A00-\u1A16\u1A20-\u1A54\u1A80-\u1A89\u1A90-\u1A99\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B50-\u1B59\u1B83-\u1BA0\u1BAE-\u1BE5\u1C00-\u1C23\u1C40-\u1C49\u1C4D-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2070\u2071\u2074-\u2079\u207F-\u2089\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2150-\u2189\u2460-\u249B\u24EA-\u24FF\u2776-\u2793\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2CFD\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u3192-\u3195\u31A0-\u31BF\u31F0-\u31FF\u3220-\u3229\u3248-\u324F\u3251-\u325F\u3280-\u3289\u32B1-\u32BF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA830-\uA835\uA840-\uA873\uA882-\uA8B3\uA8D0-\uA8D9\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA900-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF-\uA9D9\uA9E0-\uA9E4\uA9E6-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA50-\uAA59\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD07-\uDD33\uDD40-\uDD78\uDD8A\uDD8B\uDE80-\uDE9C\uDEA0-\uDED0\uDEE1-\uDEFB\uDF00-\uDF23\uDF2D-\uDF4A\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC58-\uDC76\uDC79-\uDC9E\uDCA7-\uDCAF\uDCE0-\uDCF2\uDCF4\uDCF5\uDCFB-\uDD1B\uDD20-\uDD39\uDD80-\uDDB7\uDDBC-\uDDCF\uDDD2-\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE40-\uDE48\uDE60-\uDE7E\uDE80-\uDE9F\uDEC0-\uDEC7\uDEC9-\uDEE4\uDEEB-\uDEEF\uDF00-\uDF35\uDF40-\uDF55\uDF58-\uDF72\uDF78-\uDF91\uDFA9-\uDFAF]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDCFA-\uDD23\uDD30-\uDD39\uDE60-\uDE7E\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF27\uDF30-\uDF45\uDF51-\uDF54\uDF70-\uDF81\uDFB0-\uDFCB\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC52-\uDC6F\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDCF0-\uDCF9\uDD03-\uDD26\uDD36-\uDD3F\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDD0-\uDDDA\uDDDC\uDDE1-\uDDF4\uDE00-\uDE11\uDE13-\uDE2B\uDE3F\uDE40\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDEF0-\uDEF9\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC50-\uDC59\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDCD0-\uDCD9\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE50-\uDE59\uDE80-\uDEAA\uDEB8\uDEC0-\uDEC9\uDF00-\uDF1A\uDF30-\uDF3B\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCF2\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDD50-\uDD59\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC50-\uDC6C\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD50-\uDD59\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDDA0-\uDDA9\uDEE0-\uDEF2\uDF02\uDF04-\uDF10\uDF12-\uDF33\uDF50-\uDF59\uDFB0\uDFC0-\uDFD4]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883\uD885-\uD887][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2F\uDC41-\uDC46]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE60-\uDE69\uDE70-\uDEBE\uDEC0-\uDEC9\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF50-\uDF59\uDF5B-\uDF61\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE96\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD32\uDD50-\uDD52\uDD55\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD834[\uDEC0-\uDED3\uDEE0-\uDEF3\uDF60-\uDF78]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB\uDFCE-\uDFFF]|\uD837[\uDF00-\uDF1E\uDF25-\uDF2A]|\uD838[\uDC30-\uDC6D\uDD00-\uDD2C\uDD37-\uDD3D\uDD40-\uDD49\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB\uDEF0-\uDEF9]|\uD839[\uDCD0-\uDCEB\uDCF0-\uDCF9\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDCC7-\uDCCF\uDD00-\uDD43\uDD4B\uDD50-\uDD59]|\uD83B[\uDC71-\uDCAB\uDCAD-\uDCAF\uDCB1-\uDCB4\uDD01-\uDD2D\uDD2F-\uDD3D\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD83C[\uDD00-\uDD0C]|\uD83E[\uDFF0-\uDFF9]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF39\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A\uDF50-\uDFFF]|\uD888[\uDC00-\uDFAF])+$/i;
|
|
29813
|
-
|
|
29120
|
+
var geofenceIdRegex = /^(?:[\x2D\.0-9A-Z_a-z\xAA\xB2\xB3\xB5\xB9\xBA\xBC-\xBE\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u0660-\u0669\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07C0-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0966-\u096F\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09E6-\u09F1\u09F4-\u09F9\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A66-\u0A6F\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AE6-\u0AEF\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B66-\u0B6F\u0B71-\u0B77\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0BE6-\u0BF2\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C66-\u0C6F\u0C78-\u0C7E\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CE6-\u0CEF\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D58-\u0D61\u0D66-\u0D78\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DE6-\u0DEF\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F20-\u0F33\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F-\u1049\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u1090-\u1099\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1369-\u137C\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u17E0-\u17E9\u17F0-\u17F9\u1810-\u1819\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u1A00-\u1A16\u1A20-\u1A54\u1A80-\u1A89\u1A90-\u1A99\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B50-\u1B59\u1B83-\u1BA0\u1BAE-\u1BE5\u1C00-\u1C23\u1C40-\u1C49\u1C4D-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2070\u2071\u2074-\u2079\u207F-\u2089\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2150-\u2189\u2460-\u249B\u24EA-\u24FF\u2776-\u2793\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2CFD\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u3192-\u3195\u31A0-\u31BF\u31F0-\u31FF\u3220-\u3229\u3248-\u324F\u3251-\u325F\u3280-\u3289\u32B1-\u32BF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA830-\uA835\uA840-\uA873\uA882-\uA8B3\uA8D0-\uA8D9\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA900-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF-\uA9D9\uA9E0-\uA9E4\uA9E6-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA50-\uAA59\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD07-\uDD33\uDD40-\uDD78\uDD8A\uDD8B\uDE80-\uDE9C\uDEA0-\uDED0\uDEE1-\uDEFB\uDF00-\uDF23\uDF2D-\uDF4A\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC58-\uDC76\uDC79-\uDC9E\uDCA7-\uDCAF\uDCE0-\uDCF2\uDCF4\uDCF5\uDCFB-\uDD1B\uDD20-\uDD39\uDD80-\uDDB7\uDDBC-\uDDCF\uDDD2-\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE40-\uDE48\uDE60-\uDE7E\uDE80-\uDE9F\uDEC0-\uDEC7\uDEC9-\uDEE4\uDEEB-\uDEEF\uDF00-\uDF35\uDF40-\uDF55\uDF58-\uDF72\uDF78-\uDF91\uDFA9-\uDFAF]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDCFA-\uDD23\uDD30-\uDD39\uDE60-\uDE7E\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF27\uDF30-\uDF45\uDF51-\uDF54\uDF70-\uDF81\uDFB0-\uDFCB\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC52-\uDC6F\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDCF0-\uDCF9\uDD03-\uDD26\uDD36-\uDD3F\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDD0-\uDDDA\uDDDC\uDDE1-\uDDF4\uDE00-\uDE11\uDE13-\uDE2B\uDE3F\uDE40\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDEF0-\uDEF9\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC50-\uDC59\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDCD0-\uDCD9\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE50-\uDE59\uDE80-\uDEAA\uDEB8\uDEC0-\uDEC9\uDF00-\uDF1A\uDF30-\uDF3B\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCF2\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDD50-\uDD59\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC50-\uDC6C\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD50-\uDD59\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDDA0-\uDDA9\uDEE0-\uDEF2\uDF02\uDF04-\uDF10\uDF12-\uDF33\uDF50-\uDF59\uDFB0\uDFC0-\uDFD4]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883\uD885-\uD887][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2F\uDC41-\uDC46]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE60-\uDE69\uDE70-\uDEBE\uDEC0-\uDEC9\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF50-\uDF59\uDF5B-\uDF61\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE96\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD32\uDD50-\uDD52\uDD55\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD834[\uDEC0-\uDED3\uDEE0-\uDEF3\uDF60-\uDF78]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB\uDFCE-\uDFFF]|\uD837[\uDF00-\uDF1E\uDF25-\uDF2A]|\uD838[\uDC30-\uDC6D\uDD00-\uDD2C\uDD37-\uDD3D\uDD40-\uDD49\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB\uDEF0-\uDEF9]|\uD839[\uDCD0-\uDCEB\uDCF0-\uDCF9\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDCC7-\uDCCF\uDD00-\uDD43\uDD4B\uDD50-\uDD59]|\uD83B[\uDC71-\uDCAB\uDCAD-\uDCAF\uDCB1-\uDCB4\uDD01-\uDD2D\uDD2F-\uDD3D\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD83C[\uDD00-\uDD0C]|\uD83E[\uDFF0-\uDFF9]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF39\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A\uDF50-\uDFFF]|\uD888[\uDC00-\uDFAF])+$/i;
|
|
29121
|
+
// Check if geofenceId is valid
|
|
29814
29122
|
if (!geofenceIdRegex.test(geofenceId)) {
|
|
29815
29123
|
throw new Error("Invalid geofenceId: '" + geofenceId + "' - IDs can only contain alphanumeric characters, hyphens, underscores and periods.");
|
|
29816
29124
|
}
|
|
29817
29125
|
}
|
|
29818
29126
|
function validateLinearRing(linearRing, geofenceId) {
|
|
29819
|
-
var errorPrefix = geofenceId ? geofenceId + ": " : '';
|
|
29820
|
-
|
|
29127
|
+
var errorPrefix = geofenceId ? geofenceId + ": " : '';
|
|
29128
|
+
// Validate LinearRing size, must be at least 4 points
|
|
29821
29129
|
if (linearRing.length < 4) {
|
|
29822
29130
|
throw new Error(errorPrefix + "LinearRing must contain 4 or more coordinates.");
|
|
29823
|
-
}
|
|
29824
|
-
|
|
29825
|
-
|
|
29131
|
+
}
|
|
29132
|
+
// Validate all coordinates are valid, error with which ones are bad
|
|
29826
29133
|
var badCoordinates = [];
|
|
29827
29134
|
linearRing.forEach(function (coordinates) {
|
|
29828
29135
|
try {
|
|
@@ -29834,51 +29141,40 @@ function validateLinearRing(linearRing, geofenceId) {
|
|
|
29834
29141
|
});
|
|
29835
29142
|
}
|
|
29836
29143
|
});
|
|
29837
|
-
|
|
29838
29144
|
if (badCoordinates.length > 0) {
|
|
29839
29145
|
throw new Error(errorPrefix + "One or more of the coordinates in the Polygon LinearRing are not valid: " + JSON.stringify(badCoordinates));
|
|
29840
|
-
}
|
|
29841
|
-
|
|
29842
|
-
|
|
29843
|
-
|
|
29844
|
-
|
|
29845
|
-
|
|
29846
|
-
|
|
29847
|
-
|
|
29848
|
-
lngB = _b[0],
|
|
29849
|
-
latB = _b[1];
|
|
29850
|
-
|
|
29146
|
+
}
|
|
29147
|
+
// Validate first and last coordinates are the same
|
|
29148
|
+
var _a = Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__read"])(linearRing[0], 2),
|
|
29149
|
+
lngA = _a[0],
|
|
29150
|
+
latA = _a[1];
|
|
29151
|
+
var _b = Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__read"])(linearRing[linearRing.length - 1], 2),
|
|
29152
|
+
lngB = _b[0],
|
|
29153
|
+
latB = _b[1];
|
|
29851
29154
|
if (lngA !== lngB || latA !== latB) {
|
|
29852
29155
|
throw new Error(errorPrefix + "LinearRing's first and last coordinates are not the same");
|
|
29853
29156
|
}
|
|
29854
|
-
|
|
29855
|
-
if (Object(_turf_boolean_clockwise__WEBPACK_IMPORTED_MODULE_0__["default"])(linearRing)) {
|
|
29157
|
+
if (Object(_turf_boolean_clockwise__WEBPACK_IMPORTED_MODULE_1__["default"])(linearRing)) {
|
|
29856
29158
|
throw new Error(errorPrefix + "LinearRing coordinates must be wound counterclockwise");
|
|
29857
29159
|
}
|
|
29858
29160
|
}
|
|
29859
29161
|
function validatePolygon(polygon, geofenceId) {
|
|
29860
29162
|
var errorPrefix = geofenceId ? geofenceId + ": " : '';
|
|
29861
|
-
|
|
29862
29163
|
if (!Array.isArray(polygon)) {
|
|
29863
29164
|
throw new Error(errorPrefix + "Polygon is of incorrect structure. It should be an array of LinearRings");
|
|
29864
29165
|
}
|
|
29865
|
-
|
|
29866
29166
|
if (polygon.length < 1) {
|
|
29867
29167
|
throw new Error(errorPrefix + "Polygon must have a single LinearRing array.");
|
|
29868
29168
|
}
|
|
29869
|
-
|
|
29870
29169
|
if (polygon.length > 1) {
|
|
29871
29170
|
throw new Error(errorPrefix + "Polygon must have a single LinearRing array. Note: We do not currently support polygons with holes, multipolygons, polygons that are wound clockwise, or that cross the antimeridian.");
|
|
29872
29171
|
}
|
|
29873
|
-
|
|
29874
29172
|
var verticesCount = polygon.reduce(function (prev, linearRing) {
|
|
29875
29173
|
return prev + linearRing.length;
|
|
29876
29174
|
}, 0);
|
|
29877
|
-
|
|
29878
29175
|
if (verticesCount > 1000) {
|
|
29879
29176
|
throw new Error(errorPrefix + "Polygon has more than the maximum 1000 vertices.");
|
|
29880
29177
|
}
|
|
29881
|
-
|
|
29882
29178
|
polygon.forEach(function (linearRing) {
|
|
29883
29179
|
validateLinearRing(linearRing, geofenceId);
|
|
29884
29180
|
});
|
|
@@ -29891,41 +29187,35 @@ function validateGeofencesInput(geofences) {
|
|
|
29891
29187
|
if (!geofence.geofenceId) {
|
|
29892
29188
|
throw new Error("Geofence '" + geofence + "' is missing geofenceId");
|
|
29893
29189
|
}
|
|
29894
|
-
|
|
29895
29190
|
var geofenceId = geofence.geofenceId;
|
|
29896
|
-
validateGeofenceId(geofenceId);
|
|
29897
|
-
|
|
29191
|
+
validateGeofenceId(geofenceId);
|
|
29192
|
+
// Validate geofenceId is unique
|
|
29898
29193
|
if (geofenceIds[geofenceId]) {
|
|
29899
29194
|
throw new Error("Duplicate geofenceId: " + geofenceId);
|
|
29900
29195
|
} else {
|
|
29901
29196
|
geofenceIds[geofenceId] = true;
|
|
29902
|
-
}
|
|
29903
|
-
|
|
29904
|
-
|
|
29197
|
+
}
|
|
29198
|
+
// Validate geometry exists
|
|
29905
29199
|
if (!geofence.geometry) {
|
|
29906
29200
|
throw new Error("Geofence '" + geofenceId + "' is missing geometry");
|
|
29907
29201
|
}
|
|
29908
|
-
|
|
29909
|
-
|
|
29910
|
-
|
|
29202
|
+
var geometry = geofence.geometry;
|
|
29203
|
+
// Validate polygon exists
|
|
29911
29204
|
if (!geometry.polygon) {
|
|
29912
29205
|
throw new Error("Geofence '" + geofenceId + "' is missing geometry.polygon");
|
|
29913
29206
|
}
|
|
29914
|
-
|
|
29915
|
-
|
|
29916
|
-
|
|
29207
|
+
var polygon = geometry.polygon;
|
|
29208
|
+
// Validate polygon length and structure
|
|
29917
29209
|
try {
|
|
29918
29210
|
validatePolygon(polygon, geofenceId);
|
|
29919
29211
|
} catch (error) {
|
|
29920
29212
|
if (error.message.includes('Polygon has more than the maximum 1000 vertices.')) {
|
|
29921
29213
|
throw new Error("Geofence '" + geofenceId + "' has more than the maximum of 1000 vertices");
|
|
29922
29214
|
}
|
|
29923
|
-
}
|
|
29924
|
-
|
|
29925
|
-
|
|
29926
|
-
|
|
29927
|
-
linearRing = _a[0];
|
|
29928
|
-
|
|
29215
|
+
}
|
|
29216
|
+
// Validate LinearRing length, structure, and coordinates
|
|
29217
|
+
var _a = Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__read"])(polygon, 1),
|
|
29218
|
+
linearRing = _a[0];
|
|
29929
29219
|
validateLinearRing(linearRing, geofenceId);
|
|
29930
29220
|
});
|
|
29931
29221
|
}
|